...正規表現:一致するものは見つかりませんでしたか?これは私がやろうとしていますものです
Enter Pattern
//*//_//*
Enter Text
hello *_* how are you?
No match found
は、私はこれらのエスケープシーケンスを使用する必要がメタ文字として文字の上処理することを避けるために知っています。 私は、私も
を試してみました_(アンダースコアため息)をどうするのか分からない// * _ * //
まだそれが動作しませんでした。
コード
Scanner sc = new Scanner(System.in);
System.out.println("Enter pattern");
Pattern pattern = Pattern.compile(sc.nextLine());
System.out.println("Enter Text");
Matcher matcher = pattern.matcher(sc.nextLine());
boolean found = false;
while(matcher.find())
{
System.out.println("I found the text" + matcher.group() + "Starting index" + matcher.start() + "Ending at index" + matcher.end());
found = true;
}
if(!found)
{
System.out.println("No match found");
}
ポストあなたが –