Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
759 views
in Technique[技术] by (71.8m points)

java - merge two regular expressions

I have two regular expressions, one pulling out usernames from a csv string, and the other pulling out emails.

the string format is like this:

String s = "name lastname (username) <[email protected]>; name lastname (username) <[email protected]>; name lastname (username) <[email protected]>";

the code for my regular expressions are like this.

Pattern pattern = Pattern.compile("(?<=\()[^\)]+");
Matcher matcher = pattern.matcher(s);
Pattern pattern2 = Pattern.compile("((?<=<)[^>]+)");
Matcher matcher2 = pattern2.matcher(s);

while (matcher.find() && matcher2.find()) {
    System.out.println(matcher.group() + " " + matcher2.group());
}

I've found several qeustions about merging regexes, but from the answers i haven't been able to figure out how to merge mine.

my printouts show:

"username [email protected]"

would I be able to print out the same from a single matcher, using one regex?

obs: this is a school assignment, which means i do not "need" to merge them or do any more, but i'd like to know if it is possible, and how difficult it would be.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can just use an Pipe (|) in between your multiple Regex, to match all of them : -

    String s = "name lastname (username) <[email protected]>; name lastname
            (username) <[email protected]>; name lastname 
            (username) <[email protected]>;";

    // Matches (?<=\()[^\)]+  or  ((?<=<)[^>]+)
    Pattern pattern = Pattern.compile("(?<=\()[^\)]+|((?<=<)[^>]+)");
    Matcher matcher = pattern.matcher(s);

    while (matcher.find()) {
        System.out.println(matcher.group());
    }

OUTPUT: -

username
[email protected]
username
[email protected]
username
[email protected]

UPDATE: -

If you want to print username and email only when they both exists, then you need to split your string on ; and then apply the below Regex on each of them.

Here's the code: -

    String s = "name lastname (username) ; 
                name lastname (username) <[email protected]>; 
                name lastname (username) <[email protected]>;";

    String [] strArr = s.split(";");

    for (String str: strArr) {

        Pattern pattern = Pattern.compile("\(([^\)]+)(?:\))\s(?:\<)((?<=<)[^>]+)");
        Matcher matcher = pattern.matcher(str);

        while (matcher.find()) {
            System.out.print(matcher.group(1) + " " + matcher.group(2));
        }
        System.out.println();
    }

OUTPUT: -

username [email protected]
username [email protected] // Only the last two have both username and email

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...