Java - Best way to grab ALL Strings between two Strings? (regex?)

匿名 (未验证) 提交于 2019-12-03 02:06:01

问题:

This question has been bugging me for a long time now but essentially I'm looking for the most efficient way to grab all Strings between two Strings.

The way I have been doing it for many months now is through using a bunch of temporary indices, strings, substrings, and it's really messy. (Why does Java not have a native method such as String substring(String start, String end)?

Say I have a String:

abcabc [pattern1]foo[pattern2] abcdefg [pattern1]bar[pattern2] morestuff

The end goal would be to output foo and bar. (And later to be added into a JList)

I've been trying to incorporate regex in .split() but haven't been successful. I've tried syntax using *'s and .'s but I don't think it's quite what my intention is especially since .split() only takes one argument to split against.

Otherwise I think another way is to use the Pattern and Matcher classes? But I'm really fuzzy on the appropriate procedure.

回答1:

You can construct the regex to do this for you:

// pattern1 and pattern2 are String objects String regexString = Pattern.quote(pattern1) + "(.*?)" + Pattern.quote(pattern2); 

This will treat the pattern1 and pattern2 as literal text, and the text in between the patterns is captured in the first capturing group. You can remove Pattern.quote() if you want to use regex, but I don't guarantee anything if you do that.

You can add some customization of how the match should occurs by adding flags to the regexString.

  • If you want Unicode-aware case-insensitive matching, then add (?iu) at the beginning of regexString, or supply Pattern.CASE_INSENSITIVE | Pattern.UNICODE_CASE flag to Pattern.compile method.
  • If you want to capture the content even if the two delimiting strings appear across lines, then add (?s) before (.*?), i.e. "(?s)(.*?)", or supply Pattern.DOTALL flag to Pattern.compile method.

Then compile the regex, obtain a Matcher object, iterate through the matches and save them into a List (or any Collection, it's up to you).

Pattern pattern = Pattern.compile(regexString); // text contains the full text that you want to extract data Matcher matcher = pattern.matcher(text);  while (matcher.find()) {   String textInBetween = matcher.group(1); // Since (.*?) is capturing group 1   // You can insert match into a List/Collection here } 

Testing code:

String pattern1 = "hgb"; String pattern2 = "|"; String text = "sdfjsdkhfkjsdf hgb sdjfkhsdkfsdf |sdfjksdhfjksd sdf sdkjfhsdkf | sdkjfh hgb sdkjfdshfks|";  Pattern p = Pattern.compile(Pattern.quote(pattern1) + "(.*?)" + Pattern.quote(pattern2)); Matcher m = p.matcher(text); while (m.find()) {   System.out.println(m.group(1)); } 

Do note that if you search for the text between foo and bar in this input foo text foo text bar text bar with the method above, you will get one match, which is .



回答2:

Here's a one-liner that does it all:

List strings = Arrays.asList( input.replaceAll("^.*?pattern1", "")     .split("pattern2.*?(pattern1|$)")); 

The breakdown is:

  1. Remove everything up to pattern1 (required to not end up with an empty string as the first term)
  2. Split on input (non-greedy .*?) between pattern2 and pattern1 (or end of input)
  3. Use the utility method Arrays.asList() to generate a List

Here's some test code:

public static void main( String[] args ) {     String input = "abcabc pattern1foopattern2 abcdefg pattern1barpattern2 morestuff";     List strings = Arrays.asList( input.replaceAll("^.*?pattern1", "").split("pattern2.*?(pattern1|$)"));     System.out.println( strings); } 

Output:

[foo, bar] 


回答3:

Try this:

String str = "its a string with pattern1 aleatory pattern2 things between pattern1 and pattern2 and sometimes pattern1 pattern2 nothing"; Matcher m = Pattern.compile(                             Pattern.quote("pattern1")                             + "(.*?)"                             + Pattern.quote("pattern2")                    ).matcher(str); while(m.find()){     String match = m.group(1);     System.out.println(">"+match+"

It prints:

> aleatory  and  


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!