溫馨提示×

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

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

Java中如何檢測(cè)包含URL的回文文本

發(fā)布時(shí)間:2024-11-11 18:07:41 來(lái)源:億速云 閱讀:79 作者:小樊 欄目:編程語(yǔ)言

在Java中,要檢測(cè)一個(gè)字符串是否是包含URL的回文文本,你可以按照以下步驟操作:

  1. 將字符串轉(zhuǎn)換為小寫(xiě),以便忽略大小寫(xiě)差異。
  2. 使用正則表達(dá)式提取URL。
  3. 將提取到的URL從原始字符串中移除。
  4. 檢查處理后的字符串是否是回文。

以下是一個(gè)示例代碼:

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class PalindromeWithURL {
    public static void main(String[] args) {
        String input = "A man, a plan, a canal: Panama. https://example.com";
        System.out.println(isPalindromeWithURL(input));
    }

    public static boolean isPalindromeWithURL(String input) {
        // 將字符串轉(zhuǎn)換為小寫(xiě)
        input = input.toLowerCase();

        // 使用正則表達(dá)式提取URL
        String urlPattern = "(https?://\\S+)";
        Pattern pattern = Pattern.compile(urlPattern);
        Matcher matcher = pattern.matcher(input);

        // 將提取到的URL從原始字符串中移除
        StringBuffer sb = new StringBuffer();
        while (matcher.find()) {
            matcher.appendReplacement(sb, "");
        }
        matcher.appendTail(sb);
        String stringWithoutURL = sb.toString();

        // 檢查處理后的字符串是否是回文
        int left = 0;
        int right = stringWithoutURL.length() - 1;
        while (left < right) {
            if (stringWithoutURL.charAt(left++) != stringWithoutURL.charAt(right--)) {
                return false;
            }
        }

        return true;
    }
}

這個(gè)示例代碼首先將輸入字符串轉(zhuǎn)換為小寫(xiě),然后使用正則表達(dá)式提取URL并將其從原始字符串中移除。最后,它檢查處理后的字符串是否是回文。在這個(gè)例子中,輸入字符串 “A man, a plan, a canal: Panama. https://example.com” 被識(shí)別為包含URL的回文文本。

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

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

AI