다음 정규식은 괄호가 있는 문자열을 허용합니다. −
"^.*[\\(\\)].*$";
-
^는 문장의 시작과 일치합니다.
-
.* 0개 이상의(임의) 문자와 일치합니다.
-
[\\(\\)] 일치하는 괄호입니다.
-
$는 문장의 끝을 나타냅니다.
예시 1
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"); } } }
출력 1
Enter data: sample(text) with parenthesis Input accepted
출력 2
Enter data: sample text Not accepted
예시 2
import java.util.Scanner; public class Example { public static void main(String args[]) { //Reading String from user System.out.println("Enter email address: "); Scanner sc = new Scanner(System.in); String e_mail = sc.nextLine(); //Regular expression String regex = "^.*[\\(\\)].*$"; boolean result = e_mail.matches(regex); if(result) { System.out.println("Valid match"); } else { System.out.println("Invalid match"); } } }
출력 1
Enter email address: sample(text) with parenthesis Valid match
출력 2
Enter email address: sample text Invalid match