Это мой код. Я ищу любую цифру в слове, которое выбрал, но когда мой искатель просматривает мое слово, он возвращает ложь, но в моем слове явно есть цифра.
package payrollprinter;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class PayRollPrinter {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
String word = "7";
// convert the string to a pattern
Pattern wordPattern = Pattern.compile(word);
// now I look for digits in my word
Matcher finder = wordPattern.matcher("\\d");
boolean b = finder.find();
System.out.println(b);
}
}