正規表現構文を理解しようとしています。次の作業を行う方法を知っている人はいますか?
// if there is already a decimal place in the string ignore
String origString = txtDisplay.getText();
Pattern pattern = Pattern.compile("/\\./");
//pattern =
if(pattern.matcher(origString)){
System.out.println("DEBUG - HAS A DECIMAL IGNORE");
}
else{
System.out.println("DEBUG - No Decimal");
}