溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Java回文串檢測與字符串模式匹配的結(jié)合

發(fā)布時間:2024-11-11 17:17:41 來源:億速云 閱讀:78 作者:小樊 欄目:編程語言

在Java中,我們可以結(jié)合回文串檢測和字符串模式匹配來檢查一個字符串是否為回文串,同時滿足特定的模式。例如,我們可以檢查一個字符串是否為回文串,并且只包含數(shù)字。以下是一個示例代碼:

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);

        // 使用正則表達(dá)式檢查字符串是否匹配給定的模式
        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的方法,該方法接受一個字符串和一個正則表達(dá)式模式作為參數(shù)。我們首先使用isPalindrome方法檢查字符串是否為回文串,然后使用Pattern類編譯正則表達(dá)式模式,并使用matcher方法檢查字符串是否匹配該模式。如果字符串是回文串并且匹配給定的模式,則返回true,否則返回false

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI