본문 바로가기
백엔드/Java

같은 단어 제거 정규식

by david100gom 2024. 3. 20.
String regex = "(?i)\\b([a-z]+)\\b(?:\\s+\\1\\b)+";
Pattern p = Pattern.compile(regex, Pattern.CASE_INSENSITIVE);
 
Scanner in = new Scanner(System.in);
int numSentences = Integer.parseInt(in.nextLine());
         
 while (numSentences-- > 0) {
    String input = in.nextLine();
             
    Matcher m = p.matcher(input);
             
    while (m.find()) {
        input = input.replaceAll(m.group(0),m.group(1));
    }
             
    System.out.println(input);
 }
in.close();

'백엔드 > Java' 카테고리의 다른 글

@Async가 먹히지 않는 경우는 3가지  (0) 2024.03.20
AES-256  (0) 2024.03.20
SHA-256  (0) 2024.03.20
알고리즘  (0) 2024.03.20
자바 정수범위  (0) 2024.03.20
StringBuffer 와 StringBuilder 의 차이  (0) 2024.03.20
ICMP ECHO  (0) 2024.03.20
자바 변수  (0) 2024.03.20

댓글