다음 정규식은 대괄호 −
"^.*[\(\)].*$";
^가 문장의 시작과 일치하는 문자열을 허용합니다.
.* 0개 이상의 문자와 일치합니다.
[ () ]
$는 문장의 끝을 나타냅니다.
import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; public class SampleTest { public static void main( String args[] ) { String regex = "^.*[\(\)].*$"; //Reading input from user Scanner sc = new Scanner(System.in); System.out.println("Enter data: "); String input = sc.nextLine(); //Instantiating the Pattern class Pattern pattern = Pattern.compile(regex); //Instantiating the Matcher class Matcher matcher = pattern.matcher(input); //verifying whether a match occurred if(matcher.find()) { System.out.println("Input accepted"); }else { System.out.println("Not accepted"); } } }
Enter data: sample(text) with parenthesis Input accepted
Enter data: sample text Not accepted
위 내용은 대괄호 "(" 또는 ")" 일치를 위한 Java 정규식 프로그램의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!