รับดัชนีของรูปแบบในสตริงโดยใช้ regex


91

ฉันต้องการค้นหาสตริงสำหรับรูปแบบเฉพาะ

คลาสนิพจน์ทั่วไปให้ตำแหน่ง (ดัชนีภายในสตริง) ของรูปแบบภายในสตริงหรือไม่
อาจมีมากกว่า 1 ครั้งที่เกิดขึ้นในรูปแบบ
ตัวอย่างที่ใช้ได้จริงหรือไม่?


คำตอบ:


168

ใช้Matcher :

public static void printMatches(String text, String regex) {
    Pattern pattern = Pattern.compile(regex);
    Matcher matcher = pattern.matcher(text);
    // Check all occurrences
    while (matcher.find()) {
        System.out.print("Start index: " + matcher.start());
        System.out.print(" End index: " + matcher.end());
        System.out.println(" Found: " + matcher.group());
    }
}

5

คำตอบฉบับพิเศษจาก Jean Logeart

public static int[] regExIndex(String pattern, String text, Integer fromIndex){
    Matcher matcher = Pattern.compile(pattern).matcher(text);
    if ( ( fromIndex != null && matcher.find(fromIndex) ) || matcher.find()) {
        return new int[]{matcher.start(), matcher.end()};
    }
    return new int[]{-1, -1};
}

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

public class RegexMatches
{
    public static void main( String args[] ){

      // String to be scanned to find the pattern.
      String line = "This order was places for QT3000! OK?";
      String pattern = "(.*)(\\d+)(.*)";

      // Create a Pattern object
      Pattern r = Pattern.compile(pattern);

      // Now create matcher object.
      Matcher m = r.matcher(line);
      if (m.find( )) {
         System.out.println("Found value: " + m.group(0) );
         System.out.println("Found value: " + m.group(1) );
         System.out.println("Found value: " + m.group(2) );
      } else {
         System.out.println("NO MATCH");
      }
   }
}

ผลลัพธ์

Found value: This order was places for QT3000! OK?
Found value: This order was places for QT300
Found value: 0

2
กรุณาแสดงความคิดเห็นเมื่อทำการลงคะแนน! @ เงาฉันถือว่าสิ่งนี้ถูกลดลงเนื่องจากไม่ได้เป็นคำขอของ OP ให้ดัชนีการแข่งขัน ...
El Ronnoco

4
โอเค ... ฉันลดคะแนนลงเนื่องจากคำตอบนี้ไม่ตรงกับคำถาม

3
regex ของคุณก็ผิดพลาดเช่นกัน แรก(.*)เริ่มเดิมกินทั้งสตริงจากนั้นถอยห่างออกไปมากพอที่จะให้(\d+)จับคู่หนึ่งหลักปล่อยให้วินาทีนั้น(.*)กินอะไรก็ได้ที่เหลือ ไม่ใช่ผลลัพธ์ที่มีประโยชน์อย่างยิ่งฉันพูด โอ้และคุณgroup(3)ไม่ได้รับผลลัพธ์ของคุณ
Alan Moore

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