นิพจน์ทั่วไปเพื่อจับคู่ URL ใน Java


87

ฉันใช้ RegexBuddy ในขณะที่ทำงานกับนิพจน์ทั่วไป จากไลบรารีฉันคัดลอกนิพจน์ทั่วไปเพื่อจับคู่ URL ฉันทดสอบสำเร็จภายใน RegexBuddy อย่างไรก็ตามเมื่อฉันคัดลอกเป็นStringรสJava และวางลงในโค้ด Java ก็ไม่ได้ผล ชั้นเรียนต่อไปนี้จะพิมพ์false:

public class RegexFoo {

    public static void main(String[] args) {
        String regex = "\\b(https?|ftp|file)://[-A-Z0-9+&@#/%?=~_|!:,.;]*[-A-Z0-9+&@#/%=~_|]";
        String text = "http://google.com";
        System.out.println(IsMatch(text,regex));
}

    private static boolean IsMatch(String s, String pattern) {
        try {
            Pattern patt = Pattern.compile(pattern);
            Matcher matcher = patt.matcher(s);
            return matcher.matches();
        } catch (RuntimeException e) {
        return false;
    }       
}   
}

มีใครรู้บ้างว่าฉันทำผิด?


4
Sergio อย่าจับ RuntimeException อาจทำให้เกิดข้อบกพร่องเล็กน้อยและเป็นการปฏิบัติที่ไม่ดีโดยรวม หากคุณต้องการละเว้นสถานการณ์เมื่อนิพจน์ผิดกฎหมายให้ใช้:} catch (PatternSyntaxException pse) {} แทน ดูรายการที่ 57 ของ: java.sun.com/docs/books/effective
OscarRyz

หรือคุณสามารถใช้ Pattern patt = Pattern.compile (pattern, Pattern.CASE_INSENSITIVE); เพื่อหลีกเลี่ยงการเปลี่ยนนิพจน์ทั่วไปให้จับคู่ทั้งตัวพิมพ์ใหญ่และตัวพิมพ์เล็ก
jm4

ฉันรู้ว่านี่มันเก่าจริงๆ ('08) แต่สำหรับใครก็ตามที่มีปัญหาคล้าย ๆ กัน RegexBuddy มีแท็บ "ใช้" ตรวจสอบให้แน่ใจว่าคุณได้เลือกรส Java 7 ก่อนจากนั้นในแผง "ใช้" คุณสามารถปล่อยให้มันสร้างโค้ด Java สำหรับกรณีเฉพาะของคุณ สิ่งนี้ได้ผลดีสำหรับฉัน
Daniel F

คำตอบ:


107

ลองใช้สตริง regex ต่อไปนี้แทน การทดสอบของคุณอาจทำในลักษณะที่คำนึงถึงตัวพิมพ์เล็กและใหญ่ ฉันได้เพิ่มอัลฟาตัวพิมพ์เล็กและตัวยึดตำแหน่งเริ่มต้นสตริงที่เหมาะสม

String regex = "^(https?|ftp|file)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&@#/%=~_|]";

ใช้งานได้เช่นกัน:

String regex = "\\b(https?|ftp|file)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&@#/%=~_|]";

บันทึก:

String regex = "<\\b(https?|ftp|file)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&@#/%=~_|]>"; // matches <http://google.com>

String regex = "<^(https?|ftp|file)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&@#/%=~_|]>"; // does not match <http://google.com>

1
การใช้นิพจน์ทั่วไปของคุณฉันก็เป็นเท็จเช่นกัน
Sergio del Amo

คุณแก้ไขล่าสุดของฉัน ฉันอ้วนนิ้วจุดเริ่มต้นของสตริง ฉันเพิ่งคัดลอกลงใน Eclipse และฉันได้รับ "จริง"
TomC

1
ขอบคุณมากครั้งแรกที่ฉันเห็นยูทิลิตี้สำหรับความคิดเห็นใน stackoverflow
Sergio del Amo

1
ไม่มีปัญหา. หากคุณกำลังใช้ Eclipse ฉันชอบใช้ปลั๊กอิน RegEx Tester ที่นี่brosinski.com/regex
TomC

ขอบคุณสำหรับลิงค์ที่ฉันใช้ eclipse
Sergio del Amo

96

วิธีที่ดีที่สุดในตอนนี้คือ:

android.util.Patterns.WEB_URL.matcher(linkUrl).matches();

แก้ไข: โค้ดPatternsจากhttps://github.com/android/platform_frameworks_base/blob/master/core/java/android/util/Patterns.java :

/*
 * Copyright (C) 2007 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package android.util;

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

/**
 * Commonly used regular expression patterns.
 */
public class Patterns {
    /**
     *  Regular expression to match all IANA top-level domains.
     *  List accurate as of 2011/07/18.  List taken from:
     *  http://data.iana.org/TLD/tlds-alpha-by-domain.txt
     *  This pattern is auto-generated by frameworks/ex/common/tools/make-iana-tld-pattern.py
     *
     *  @deprecated Due to the recent profileration of gTLDs, this API is
     *  expected to become out-of-date very quickly. Therefore it is now
     *  deprecated.
     */
    @Deprecated
    public static final String TOP_LEVEL_DOMAIN_STR =
        "((aero|arpa|asia|a[cdefgilmnoqrstuwxz])"
        + "|(biz|b[abdefghijmnorstvwyz])"
        + "|(cat|com|coop|c[acdfghiklmnoruvxyz])"
        + "|d[ejkmoz]"
        + "|(edu|e[cegrstu])"
        + "|f[ijkmor]"
        + "|(gov|g[abdefghilmnpqrstuwy])"
        + "|h[kmnrtu]"
        + "|(info|int|i[delmnoqrst])"
        + "|(jobs|j[emop])"
        + "|k[eghimnprwyz]"
        + "|l[abcikrstuvy]"
        + "|(mil|mobi|museum|m[acdeghklmnopqrstuvwxyz])"
        + "|(name|net|n[acefgilopruz])"
        + "|(org|om)"
        + "|(pro|p[aefghklmnrstwy])"
        + "|qa"
        + "|r[eosuw]"
        + "|s[abcdeghijklmnortuvyz]"
        + "|(tel|travel|t[cdfghjklmnoprtvwz])"
        + "|u[agksyz]"
        + "|v[aceginu]"
        + "|w[fs]"
        + "|(\u03b4\u03bf\u03ba\u03b9\u03bc\u03ae|\u0438\u0441\u043f\u044b\u0442\u0430\u043d\u0438\u0435|\u0440\u0444|\u0441\u0440\u0431|\u05d8\u05e2\u05e1\u05d8|\u0622\u0632\u0645\u0627\u06cc\u0634\u06cc|\u0625\u062e\u062a\u0628\u0627\u0631|\u0627\u0644\u0627\u0631\u062f\u0646|\u0627\u0644\u062c\u0632\u0627\u0626\u0631|\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629|\u0627\u0644\u0645\u063a\u0631\u0628|\u0627\u0645\u0627\u0631\u0627\u062a|\u0628\u06be\u0627\u0631\u062a|\u062a\u0648\u0646\u0633|\u0633\u0648\u0631\u064a\u0629|\u0641\u0644\u0633\u0637\u064a\u0646|\u0642\u0637\u0631|\u0645\u0635\u0631|\u092a\u0930\u0940\u0915\u094d\u0937\u093e|\u092d\u093e\u0930\u0924|\u09ad\u09be\u09b0\u09a4|\u0a2d\u0a3e\u0a30\u0a24|\u0aad\u0abe\u0ab0\u0aa4|\u0b87\u0ba8\u0bcd\u0ba4\u0bbf\u0baf\u0bbe|\u0b87\u0bb2\u0b99\u0bcd\u0b95\u0bc8|\u0b9a\u0bbf\u0b99\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0bc2\u0bb0\u0bcd|\u0baa\u0bb0\u0bbf\u0b9f\u0bcd\u0b9a\u0bc8|\u0c2d\u0c3e\u0c30\u0c24\u0c4d|\u0dbd\u0d82\u0d9a\u0dcf|\u0e44\u0e17\u0e22|\u30c6\u30b9\u30c8|\u4e2d\u56fd|\u4e2d\u570b|\u53f0\u6e7e|\u53f0\u7063|\u65b0\u52a0\u5761|\u6d4b\u8bd5|\u6e2c\u8a66|\u9999\u6e2f|\ud14c\uc2a4\ud2b8|\ud55c\uad6d|xn\\-\\-0zwm56d|xn\\-\\-11b5bs3a9aj6g|xn\\-\\-3e0b707e|xn\\-\\-45brj9c|xn\\-\\-80akhbyknj4f|xn\\-\\-90a3ac|xn\\-\\-9t4b11yi5a|xn\\-\\-clchc0ea0b2g2a9gcd|xn\\-\\-deba0ad|xn\\-\\-fiqs8s|xn\\-\\-fiqz9s|xn\\-\\-fpcrj9c3d|xn\\-\\-fzc2c9e2c|xn\\-\\-g6w251d|xn\\-\\-gecrj9c|xn\\-\\-h2brj9c|xn\\-\\-hgbk6aj7f53bba|xn\\-\\-hlcj6aya9esc7a|xn\\-\\-j6w193g|xn\\-\\-jxalpdlp|xn\\-\\-kgbechtv|xn\\-\\-kprw13d|xn\\-\\-kpry57d|xn\\-\\-lgbbat1ad8j|xn\\-\\-mgbaam7a8h|xn\\-\\-mgbayh7gpa|xn\\-\\-mgbbh1a71e|xn\\-\\-mgbc0a9azcg|xn\\-\\-mgberp4a5d4ar|xn\\-\\-o3cw4h|xn\\-\\-ogbpf8fl|xn\\-\\-p1ai|xn\\-\\-pgbs0dh|xn\\-\\-s9brj9c|xn\\-\\-wgbh1c|xn\\-\\-wgbl6a|xn\\-\\-xkc2al3hye2a|xn\\-\\-xkc2dl3a5ee0h|xn\\-\\-yfro4i67o|xn\\-\\-ygbi2ammx|xn\\-\\-zckzah|xxx)"
        + "|y[et]"
        + "|z[amw])";

    /**
     *  Regular expression pattern to match all IANA top-level domains.
     *  @deprecated This API is deprecated. See {@link #TOP_LEVEL_DOMAIN_STR}.
     */
    @Deprecated
    public static final Pattern TOP_LEVEL_DOMAIN =
        Pattern.compile(TOP_LEVEL_DOMAIN_STR);

    /**
     *  Regular expression to match all IANA top-level domains for WEB_URL.
     *  List accurate as of 2011/07/18.  List taken from:
     *  http://data.iana.org/TLD/tlds-alpha-by-domain.txt
     *  This pattern is auto-generated by frameworks/ex/common/tools/make-iana-tld-pattern.py
     *
     *  @deprecated This API is deprecated. See {@link #TOP_LEVEL_DOMAIN_STR}.
     */
    @Deprecated
    public static final String TOP_LEVEL_DOMAIN_STR_FOR_WEB_URL =
        "(?:"
        + "(?:aero|arpa|asia|a[cdefgilmnoqrstuwxz])"
        + "|(?:biz|b[abdefghijmnorstvwyz])"
        + "|(?:cat|com|coop|c[acdfghiklmnoruvxyz])"
        + "|d[ejkmoz]"
        + "|(?:edu|e[cegrstu])"
        + "|f[ijkmor]"
        + "|(?:gov|g[abdefghilmnpqrstuwy])"
        + "|h[kmnrtu]"
        + "|(?:info|int|i[delmnoqrst])"
        + "|(?:jobs|j[emop])"
        + "|k[eghimnprwyz]"
        + "|l[abcikrstuvy]"
        + "|(?:mil|mobi|museum|m[acdeghklmnopqrstuvwxyz])"
        + "|(?:name|net|n[acefgilopruz])"
        + "|(?:org|om)"
        + "|(?:pro|p[aefghklmnrstwy])"
        + "|qa"
        + "|r[eosuw]"
        + "|s[abcdeghijklmnortuvyz]"
        + "|(?:tel|travel|t[cdfghjklmnoprtvwz])"
        + "|u[agksyz]"
        + "|v[aceginu]"
        + "|w[fs]"
        + "|(?:\u03b4\u03bf\u03ba\u03b9\u03bc\u03ae|\u0438\u0441\u043f\u044b\u0442\u0430\u043d\u0438\u0435|\u0440\u0444|\u0441\u0440\u0431|\u05d8\u05e2\u05e1\u05d8|\u0622\u0632\u0645\u0627\u06cc\u0634\u06cc|\u0625\u062e\u062a\u0628\u0627\u0631|\u0627\u0644\u0627\u0631\u062f\u0646|\u0627\u0644\u062c\u0632\u0627\u0626\u0631|\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629|\u0627\u0644\u0645\u063a\u0631\u0628|\u0627\u0645\u0627\u0631\u0627\u062a|\u0628\u06be\u0627\u0631\u062a|\u062a\u0648\u0646\u0633|\u0633\u0648\u0631\u064a\u0629|\u0641\u0644\u0633\u0637\u064a\u0646|\u0642\u0637\u0631|\u0645\u0635\u0631|\u092a\u0930\u0940\u0915\u094d\u0937\u093e|\u092d\u093e\u0930\u0924|\u09ad\u09be\u09b0\u09a4|\u0a2d\u0a3e\u0a30\u0a24|\u0aad\u0abe\u0ab0\u0aa4|\u0b87\u0ba8\u0bcd\u0ba4\u0bbf\u0baf\u0bbe|\u0b87\u0bb2\u0b99\u0bcd\u0b95\u0bc8|\u0b9a\u0bbf\u0b99\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0bc2\u0bb0\u0bcd|\u0baa\u0bb0\u0bbf\u0b9f\u0bcd\u0b9a\u0bc8|\u0c2d\u0c3e\u0c30\u0c24\u0c4d|\u0dbd\u0d82\u0d9a\u0dcf|\u0e44\u0e17\u0e22|\u30c6\u30b9\u30c8|\u4e2d\u56fd|\u4e2d\u570b|\u53f0\u6e7e|\u53f0\u7063|\u65b0\u52a0\u5761|\u6d4b\u8bd5|\u6e2c\u8a66|\u9999\u6e2f|\ud14c\uc2a4\ud2b8|\ud55c\uad6d|xn\\-\\-0zwm56d|xn\\-\\-11b5bs3a9aj6g|xn\\-\\-3e0b707e|xn\\-\\-45brj9c|xn\\-\\-80akhbyknj4f|xn\\-\\-90a3ac|xn\\-\\-9t4b11yi5a|xn\\-\\-clchc0ea0b2g2a9gcd|xn\\-\\-deba0ad|xn\\-\\-fiqs8s|xn\\-\\-fiqz9s|xn\\-\\-fpcrj9c3d|xn\\-\\-fzc2c9e2c|xn\\-\\-g6w251d|xn\\-\\-gecrj9c|xn\\-\\-h2brj9c|xn\\-\\-hgbk6aj7f53bba|xn\\-\\-hlcj6aya9esc7a|xn\\-\\-j6w193g|xn\\-\\-jxalpdlp|xn\\-\\-kgbechtv|xn\\-\\-kprw13d|xn\\-\\-kpry57d|xn\\-\\-lgbbat1ad8j|xn\\-\\-mgbaam7a8h|xn\\-\\-mgbayh7gpa|xn\\-\\-mgbbh1a71e|xn\\-\\-mgbc0a9azcg|xn\\-\\-mgberp4a5d4ar|xn\\-\\-o3cw4h|xn\\-\\-ogbpf8fl|xn\\-\\-p1ai|xn\\-\\-pgbs0dh|xn\\-\\-s9brj9c|xn\\-\\-wgbh1c|xn\\-\\-wgbl6a|xn\\-\\-xkc2al3hye2a|xn\\-\\-xkc2dl3a5ee0h|xn\\-\\-yfro4i67o|xn\\-\\-ygbi2ammx|xn\\-\\-zckzah|xxx)"
        + "|y[et]"
        + "|z[amw]))";

    /**
     * Good characters for Internationalized Resource Identifiers (IRI).
     * This comprises most common used Unicode characters allowed in IRI
     * as detailed in RFC 3987.
     * Specifically, those two byte Unicode characters are not included.
     */
    public static final String GOOD_IRI_CHAR =
        "a-zA-Z0-9\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF";

    public static final Pattern IP_ADDRESS
        = Pattern.compile(
            "((25[0-5]|2[0-4][0-9]|[0-1][0-9]{2}|[1-9][0-9]|[1-9])\\.(25[0-5]|2[0-4]"
            + "[0-9]|[0-1][0-9]{2}|[1-9][0-9]|[1-9]|0)\\.(25[0-5]|2[0-4][0-9]|[0-1]"
            + "[0-9]{2}|[1-9][0-9]|[1-9]|0)\\.(25[0-5]|2[0-4][0-9]|[0-1][0-9]{2}"
            + "|[1-9][0-9]|[0-9]))");

    /**
     * RFC 1035 Section 2.3.4 limits the labels to a maximum 63 octets.
     */
    private static final String IRI
        = "[" + GOOD_IRI_CHAR + "]([" + GOOD_IRI_CHAR + "\\-]{0,61}[" + GOOD_IRI_CHAR + "]){0,1}";

    private static final String GOOD_GTLD_CHAR =
        "a-zA-Z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF";
    private static final String GTLD = "[" + GOOD_GTLD_CHAR + "]{2,63}";
    private static final String HOST_NAME = "(" + IRI + "\\.)+" + GTLD;

    public static final Pattern DOMAIN_NAME
        = Pattern.compile("(" + HOST_NAME + "|" + IP_ADDRESS + ")");

    /**
     *  Regular expression pattern to match most part of RFC 3987
     *  Internationalized URLs, aka IRIs.  Commonly used Unicode characters are
     *  added.
     */
    public static final Pattern WEB_URL = Pattern.compile(
        "((?:(http|https|Http|Https|rtsp|Rtsp):\\/\\/(?:(?:[a-zA-Z0-9\\$\\-\\_\\.\\+\\!\\*\\'\\(\\)"
        + "\\,\\;\\?\\&\\=]|(?:\\%[a-fA-F0-9]{2})){1,64}(?:\\:(?:[a-zA-Z0-9\\$\\-\\_"
        + "\\.\\+\\!\\*\\'\\(\\)\\,\\;\\?\\&\\=]|(?:\\%[a-fA-F0-9]{2})){1,25})?\\@)?)?"
        + "(?:" + DOMAIN_NAME + ")"
        + "(?:\\:\\d{1,5})?)" // plus option port number
        + "(\\/(?:(?:[" + GOOD_IRI_CHAR + "\\;\\/\\?\\:\\@\\&\\=\\#\\~"  // plus option query params
        + "\\-\\.\\+\\!\\*\\'\\(\\)\\,\\_])|(?:\\%[a-fA-F0-9]{2}))*)?"
        + "(?:\\b|$)"); // and finally, a word boundary or end of
                        // input.  This is to stop foo.sure from
                        // matching as foo.su

    public static final Pattern EMAIL_ADDRESS
        = Pattern.compile(
            "[a-zA-Z0-9\\+\\.\\_\\%\\-\\+]{1,256}" +
            "\\@" +
            "[a-zA-Z0-9][a-zA-Z0-9\\-]{0,64}" +
            "(" +
                "\\." +
                "[a-zA-Z0-9][a-zA-Z0-9\\-]{0,25}" +
            ")+"
        );

    /**
     * This pattern is intended for searching for things that look like they
     * might be phone numbers in arbitrary text, not for validating whether
     * something is in fact a phone number.  It will miss many things that
     * are legitimate phone numbers.
     *
     * <p> The pattern matches the following:
     * <ul>
     * <li>Optionally, a + sign followed immediately by one or more digits. Spaces, dots, or dashes
     * may follow.
     * <li>Optionally, sets of digits in parentheses, separated by spaces, dots, or dashes.
     * <li>A string starting and ending with a digit, containing digits, spaces, dots, and/or dashes.
     * </ul>
     */
    public static final Pattern PHONE
        = Pattern.compile(                      // sdd = space, dot, or dash
                "(\\+[0-9]+[\\- \\.]*)?"        // +<digits><sdd>*
                + "(\\([0-9]+\\)[\\- \\.]*)?"   // (<digits>)<sdd>*
                + "([0-9][0-9\\- \\.]+[0-9])"); // <digit><digit|sdd>+<digit>

    /**
     *  Convenience method to take all of the non-null matching groups in a
     *  regex Matcher and return them as a concatenated string.
     *
     *  @param matcher      The Matcher object from which grouped text will
     *                      be extracted
     *
     *  @return             A String comprising all of the non-null matched
     *                      groups concatenated together
     */
    public static final String concatGroups(Matcher matcher) {
        StringBuilder b = new StringBuilder();
        final int numGroups = matcher.groupCount();

        for (int i = 1; i <= numGroups; i++) {
            String s = matcher.group(i);

            if (s != null) {
                b.append(s);
            }
        }

        return b.toString();
    }

    /**
     * Convenience method to return only the digits and plus signs
     * in the matching string.
     *
     * @param matcher      The Matcher object from which digits and plus will
     *                     be extracted
     *
     * @return             A String comprising all of the digits and plus in
     *                     the match
     */
    public static final String digitsAndPlusOnly(Matcher matcher) {
        StringBuilder buffer = new StringBuilder();
        String matchingRegion = matcher.group();

        for (int i = 0, size = matchingRegion.length(); i < size; i++) {
            char character = matchingRegion.charAt(i);

            if (character == '+' || Character.isDigit(character)) {
                buffer.append(character);
            }
        }
        return buffer.toString();
    }

    /**
     * Do not create this static utility class.
     */
    private Patterns() {}
}

3
+1 สำหรับคุณ! ขอบคุณมาก!!! นี่คือรหัสที่ยอดเยี่ยม! ทุกคนพยายามใช้ regex ที่ยากในขณะที่มันอาจจะง่าย สุดยอด!
Kevin van Mierlo

7
@JPM ยกเว้นว่า OP กำลังมองหาโซลูชัน Java ไม่ใช่โซลูชันเฉพาะสำหรับ Android (ง่ายต่อการลืมดูแท็กเฉพาะสำหรับ Q) ยังคงเป็นสิ่งที่ดีสำหรับผู้ที่ทำโค้ดสำหรับ Android เพื่อให้ทราบดังนั้นฉันจึงเพิ่ม
แบ่งแยกไม่ได้

3
@indivisible โชคดีที่ Android เป็นโอเพ่นซอร์สและคุณสามารถดึงโค้ดได้จากgithub.com/android/platform_frameworks_base/blob/master/core/… :)
EpicPandaForce

3
@EpicPandaForce ฉันคิดว่าความคิดเห็นของคุณเป็นสิ่งเดียวที่ทำให้คำตอบนี้เป็นที่ยอมรับ / เป็นประโยชน์เนื่องจากคำถามกำลังหาทางjavaแก้ไขไม่ใช่android
Don Cheadle

2
ไม่ได้ตรวจสอบว่า url เริ่มจาก http หรือ https ฉันทดสอบกับ www.www และให้ความจริงกับฉัน ดังนั้นไม่มีประโยชน์สำหรับฉัน
FaisalAhmed

74

ฉันจะลองใช้มาตรฐาน "ทำไมคุณถึงทำแบบนี้" ตอบ ... รู้เรื่องjava.net.URL?

URL url = new URL(stringURL);

ข้างต้นจะทำให้เกิดข้อผิดพลาดMalformedURLExceptionหากไม่สามารถแยกวิเคราะห์ URL ได้


1
ฉันต้องผ่านถนนนิพจน์ทั่วไป สิ่งที่ฉันโพสต์ต่อไปนี้ง่ายที่สุดเท่าที่จะทำได้เพื่อทำให้คำถามของฉันชัดเจน ในโปรแกรมของฉันฉันใช้ URL regex ภายใน regex ที่ซับซ้อนมากขึ้น
Sergio del Amo

เจ๋งมาก ฉันไม่มีคำตอบที่ดีกว่า regex-wise ดังนั้นฉันคิดว่าฉันจะโพสต์ทางเลือกอื่น ไม่คิดว่าฉันจะรู้สึกแย่กับมัน
billjamesdev

2
คุณพูดถูกบางทีการขีดลงอาจจะมากไปหน่อย "ฉันจะลองมาตรฐาน" ฟังดูไม่พอใจเล็กน้อย
เซอร์จิโอเดลอาโม

เย็น (ขออภัยวันหยุดด่วน) ใช่ไม่ได้ตั้งใจอย่างนั้น ฉันเพิ่งเห็นว่ามีมากมายที่นี่และบางครั้งก็ช่วยได้ด้วย
billjamesdev

15
"URL ใหม่" จะแสดงเฉพาะ MalformedURLException หากพอร์ต <0 หรือไม่เข้าใจโปรโตคอล นอกเหนือจากนั้นสิ่งใดไป มันจะไม่จับ: 1.2.3. 1.2.3.4.5 1.2,3.4.5 : ฯลฯ
David Newcomb

4

ปัญหาเกี่ยวกับแนวทางที่แนะนำทั้งหมด: RegEx ทั้งหมดคือ ตรวจสอบความถูกต้อง

รหัสที่ใช้ RegEx ทั้งหมดได้รับการออกแบบมากเกินไป: จะพบเฉพาะ URL ที่ถูกต้องเท่านั้น! ในฐานะตัวอย่างจะไม่สนใจสิ่งที่ขึ้นต้นด้วย "http: //" และมีอักขระที่ไม่ใช่ ASCII อยู่ข้างใน

ยิ่งไปกว่านั้น: ฉันพบเวลาในการประมวลผล 1-2 วินาที (เธรดเดี่ยวเฉพาะ) กับแพ็คเกจ Java RegEx (การกรองที่อยู่อีเมลจากข้อความ) สำหรับประโยคที่เล็กและเรียบง่ายไม่มีอะไรเฉพาะเจาะจง อาจมีข้อผิดพลาดใน Java 6 RegEx ...

วิธีแก้ปัญหาที่ง่ายที่สุด / เร็วที่สุดคือการใช้ StringTokenizer เพื่อแยกข้อความออกเป็นโทเค็นเพื่อลบโทเค็นที่ขึ้นต้นด้วย "http: //" เป็นต้นและเชื่อมต่อโทเค็นเป็นข้อความอีกครั้ง

หากคุณต้องการกรองอีเมลจากข้อความ (เพราะในภายหลังคุณจะทำเจ้าหน้าที่ NLP เป็นต้น) - เพียงแค่ลบโทเค็นทั้งหมดที่มี "@" อยู่ข้างใน

นี่เป็นข้อความธรรมดาที่ RegEx ของ Java 6 ล้มเหลว ลองใช้ Java ในตัวแปรที่แตกต่างกัน ใช้เวลาประมาณ 1,000 มิลลิวินาทีต่อการเรียก RegEx ในแอปพลิเคชันทดสอบเธรดเดียวที่รันเป็นเวลานาน:

pattern = Pattern.compile("[A-Za-z0-9](([_\\.\\-]?[a-zA-Z0-9]+)*)@([A-Za-z0-9]+)(([\\.\\-]?[a-zA-Z0-9]+)*)\\.([A-Za-z]{2,})", Pattern.CASE_INSENSITIVE);

"Avalanna is such a sweet little girl! It would b heartbreaking if cancer won. She's so precious! #BeliebersPrayForAvalanna");
"@AndySamuels31 Hahahahahahahahahhaha lol, you don't look like a girl hahahahhaahaha, you are... sexy.";

อย่าใช้นิพจน์ทั่วไปหากคุณต้องการกรองคำด้วย "@", "http: //", "ftp: //", "mailto:"; มันเป็นค่าใช้จ่ายทางวิศวกรรมขนาดใหญ่

หากคุณต้องการใช้ RegEx กับ Java จริงๆลองใช้Automaton


ฮ่า ๆ. Automaton ไม่รองรับกลุ่มการจับภาพ
user1050755

4
ฉันไม่ได้รับความกังวลของคุณ regex ของคำตอบที่ยอมรับนั้นทำงานได้ดีในการตรวจสอบความถูกต้องของ URL ดูเหมือนคุณจะเย้ยหยันพูดit will find only valid URLs!- นั่นคือเป้าหมายของคำถามของ OP ฉันพลาดอะไรไปรึเปล่า?
Don Cheadle

3

ใช้งานได้เช่นกัน:

String regex = "\\b(https?|ftp|file)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&@#/%=~_|]";

บันทึก:

String regex = "<\\b(https?|ftp|file)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&@#/%=~_|]>"; // matches <http://google.com>

String regex = "<^(https?|ftp|file)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&@#/%=~_|]>"; // does not match <http://google.com>

ดังนั้นข้อแรกอาจมีประโยชน์มากกว่าสำหรับการใช้งานทั่วไป


3

ตามคำตอบของ billjamesdev นี่เป็นอีกวิธีหนึ่งในการตรวจสอบความถูกต้องของ URL โดยไม่ต้องใช้ RegEx:

จากApache Commons Validator lib ให้ดูที่คลาสUrlValidator UrlValidatorโค้ดตัวอย่างบางส่วน:

สร้าง UrlValidator ด้วยรูปแบบที่ถูกต้องของ "http" และ "https"

String[] schemes = {"http","https"}.
UrlValidator urlValidator = new UrlValidator(schemes);
if (urlValidator.isValid("ftp://foo.bar.com/")) {
   System.out.println("url is valid");
} else {
   System.out.println("url is invalid");
}

prints "url is invalid"

หากใช้ตัวสร้างเริ่มต้นแทน

UrlValidator urlValidator = new UrlValidator();
if (urlValidator.isValid("ftp://foo.bar.com/")) {
   System.out.println("url is valid");
} else {
   System.out.println("url is invalid");
}

พิมพ์ "url ถูกต้อง"


1
((http?|https|ftp|file)://)?((W|w){3}.)?[a-zA-Z0-9]+\.[a-zA-Z]+

ตรวจสอบที่นี่: - https://www.freeformatter.com/java-regex-tester.html#ad-output

จัดเรียงรายการเหล่านี้อย่างถูกต้อง


มันล้มเหลวสำหรับอักขระพิเศษ
Sankalp Kotewar

ฉันต้องการ regex เพื่อลบ url ออกจากชื่อเพลง หาไม่เจอหรือฉันควรบอกว่าล้มเหลวมากที่สุดดังนั้นฉันจึงโพสต์สิ่งที่ใช้ได้ผลสำหรับฉันและในกรณีเหล่านั้น :)
Abhiraj

ใช่มันทำ ตรวจสอบตามลิงค์ที่ให้ไว้
Abhiraj

0

เมื่อใช้นิพจน์ทั่วไปจากไลบรารีของ RegexBuddy อย่าลืมใช้โหมดการจับคู่เดียวกันในโค้ดของคุณเองกับนิพจน์ทั่วไปจากไลบรารี หากคุณสร้างข้อมูลโค้ดซอร์สโค้ดบนแท็บใช้ RegexBuddy จะตั้งค่าตัวเลือกการจับคู่ที่ถูกต้องโดยอัตโนมัติในข้อมูลโค้ดต้นฉบับ หากคุณคัดลอก / วาง regex คุณต้องทำด้วยตัวเอง

ในกรณีนี้ตามที่คนอื่น ๆ ชี้ให้เห็นว่าคุณพลาดตัวเลือกกรณีไม่อ่อนไหว

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.