您好,登錄后才能下訂單哦!
在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
。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。