Java回文串检测与字符串模式匹配的结合

发布时间:2024-11-11 17:17:41 作者:小樊
来源:亿速云 阅读:78

在Java中,我们可以结合回文串检测和字符串模式匹配来检查一个字符串是否为回文串,同时满足特定的模式。例如,我们可以检查一个字符串是否为回文串,并且只包含数字。以下是一个示例代码:

import java.util.regex.Pattern;

public class PalindromeChecker {
    public static void main(String[] args) {
        String input = "A man, a plan, a canal: Panama";
        boolean isPalindrome = isPalindromeWithPattern(input, "\\d+");
        System.out.println("Is the input a palindrome and match the pattern? " + isPalindrome);
    }

    public static boolean isPalindromeWithPattern(String input, String pattern) {
        // 检查字符串是否为回文串
        boolean isPalindrome = isPalindrome(input);

        // 使用正则表达式检查字符串是否匹配给定的模式
        Pattern compiledPattern = Pattern.compile(pattern);
        boolean matchesPattern = compiledPattern.matcher(input).matches();

        // 如果字符串是回文串并且匹配给定的模式,则返回true
        return isPalindrome && matchesPattern;
    }

    public static boolean isPalindrome(String input) {
        int left = 0;
        int right = input.length() - 1;

        while (left < right) {
            if (input.charAt(left) != input.charAt(right)) {
                return false;
            }
            left++;
            right--;
        }

        return true;
    }
}

在这个示例中,我们首先定义了一个名为isPalindromeWithPattern的方法,该方法接受一个字符串和一个正则表达式模式作为参数。我们首先使用isPalindrome方法检查字符串是否为回文串,然后使用Pattern类编译正则表达式模式,并使用matcher方法检查字符串是否匹配该模式。如果字符串是回文串并且匹配给定的模式,则返回true,否则返回false

推荐阅读:
  1. 2021最新版多线程的面试题有哪些
  2. 什么是ThreadPoolExecutor

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

java

上一篇:Java中如何检测包含通配符的回文模式

下一篇:Java中如何检测循环回文串

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》