在java中的两个字符串之间提取字符串

时间:2013-05-16 20:55:17

标签: java regex string

我尝试在<%=和%>之间获取字符串,这是我的实现:

String str = "ZZZZL <%= dsn %> AFFF <%= AFG %>";
Pattern pattern = Pattern.compile("<%=(.*?)%>");
String[] result = pattern.split(str);
System.out.println(Arrays.toString(result));

它返回

[ZZZZL ,  AFFF ]

但我的期望是:

[ dsn , AFG ]

我错在哪里以及如何纠正它?

4 个答案:

答案 0 :(得分:56)

你的模式很好。但是你不应该split()将它移开,你应该find()它。以下代码给出了您要查找的输出:

String str = "ZZZZL <%= dsn %> AFFF <%= AFG %>";
Pattern pattern = Pattern.compile("<%=(.*?)%>");
Matcher matcher = pattern.matcher(str);
while (matcher.find()) {
    System.out.println(matcher.group(1));
}

答案 1 :(得分:23)

我在这里回答了这个问题: https://stackoverflow.com/a/38238785/1773972

基本上使用

StringUtils.substringBetween(str, "<%=", "%>");

这需要使用&#34; Apache commons lang&#34;图书馆: https://mvnrepository.com/artifact/org.apache.commons/commons-lang3/3.4

这个库有很多用于处理字符串的有用方法,你将真正受益于在java代码的其他方面探索这个库!

答案 2 :(得分:3)

您的正则表达式看起来是正确的,但您使用splitting而不是matching。你想要这样的东西:

// Untested code
Matcher matcher = Pattern.compile("<%=(.*?)%>").matcher(str);
while (matcher.find()) {
    System.out.println(matcher.group());
}

答案 3 :(得分:2)

Jlordo方法涵盖了具体情况。如果您尝试使用它来构建抽象方法,则可能难以检查“textFrom”是否在“textTo”之前。否则,方法可以为文本中的其他一些“textFrom”返回匹配项。

这是一个现成的抽象方法,涵盖了这个缺点:

  /**
   * Get text between two strings. Passed limiting strings are not 
   * included into result.
   *
   * @param text     Text to search in.
   * @param textFrom Text to start cutting from (exclusive).
   * @param textTo   Text to stop cuutting at (exclusive).
   */
  public static String getBetweenStrings(
    String text,
    String textFrom,
    String textTo) {

    String result = "";

    // Cut the beginning of the text to not occasionally meet a      
    // 'textTo' value in it:
    result =
      text.substring(
        text.indexOf(textFrom) + textFrom.length(),
        text.length());

    // Cut the excessive ending of the text:
    result =
      result.substring(
        0,
        result.indexOf(textTo));

    return result;
  }