ฉันพยายามที่จะเข้าใจรหัสบล็อกนี้ ในอันแรกสิ่งที่เรากำลังมองหาในการแสดงออกคืออะไร?
ความเข้าใจของฉันคือว่ามันเป็นตัวละครใด ๆ (0 หรือมากกว่าครั้ง *) ตามด้วยหมายเลขใด ๆ ระหว่าง 0 และ 9 (หนึ่งหรือมากกว่าหนึ่งครั้ง +) ตามด้วยตัวละครใด ๆ (0 หรือมากกว่าครั้ง *)
เมื่อสิ่งนี้ถูกดำเนินการผลลัพธ์คือ:
Found value: This order was placed for QT3000! OK?
Found value: This order was placed for QT300
Found value: 0
ใครช่วยกรุณาผ่านสิ่งนี้กับฉันได้ไหม
ข้อดีของการใช้กลุ่มการบันทึกคืออะไร
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexTut3 {
public static void main(String args[]) {
String line = "This order was placed 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");
}
}
}