다음은 짝수 길이의 10보다 큰 16진수와 일치시키는 정규식입니다. -
^(?=.{10,255}$)(?:0x)?\p{XDigit}{2}(?:\p{XDigit}{2})*$ 어디,
-
^ − 문장의 시작과 일치합니다.
-
(?=.{10,255}$) − 10에서 255 사이의 문자로 끝나는 문자열.
-
\p{XDigit}{2} − 두 개의 16진수 문자.
-
(?:\p{XDigit}{2})* - 0개 이상의 이중 16진수 문자 시퀀스.
-
$ − 문장의 끝과 일치합니다.
예시 1
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class JavaExample51 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String nums[] = new String[5];
for(int i=0; i<nums.length; i++){
System.out.println("Enter a hexa-decimal number: ");
nums[i] = sc.nextLine();
}
//Regular expression to accept English alphabet
String regex = "^(?=.{10,255}$)(?:0x)?\\p{XDigit}{2}(?:\\p{XDigit}{2})*$";
//Creating a pattern object
Pattern pattern = Pattern.compile(regex);
for (String hex : nums) {
//Creating a Matcher object
Matcher matcher = pattern.matcher(hex);
if(matcher.find()) {
System.out.println(hex+" is valid");
}else {
System.out.println(hex+" is not valid");
}
}
}
} 출력
Enter a hexa-decimal number: 0x1234567890 Enter a hexa-decimal number: 123456789 Enter a hexa-decimal number: 123456789012 Enter a hexa-decimal number: sfdgdf35364 Enter a hexa-decimal number: $@%#BV#* 0x1234567890 is valid 123456789 is not valid 123456789012 is valid sfdgdf35364 is not valid $@%#BV#* is not valid
예시 2
import java.util.Scanner;
public class JavaExample {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Enter a hexa-decimal number: ");
String name = sc.nextLine();
String regex = "^(?=.{10,255}$)(?:0x)?\\p{XDigit}{2}(?:\\p{XDigit}{2})*$";
boolean result = name.matches(regex);
if(result) {
System.out.println("Given number is valid");
}else {
System.out.println("Given number is not valid");
}
}
} 출력 1
Enter your name: 0x1234567890 Given name is valid
출력 2
Enter a hexa-decimal number: 024587545 Given number is not valid