String 특수 문자 체크 regex

regex를 사용하여 문자열에 특수문자가 포함되어 있는지를 검사하는 코드이다.

1
2
3
4
// 공백 포함 특수문자 체크
Pattern pattern1 = Pattern.compile("[ !@#$%^&*(),.?\":{}|<>]");
// 공백 미포함 특수문자 체크
Pattern pattern2 = Pattern.compile("[!@#$%^&*(),.?\":{}|<>]");

아래는 테스트 코드이다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import org.junit.Test;

import java.util.regex.Pattern;

import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;

public class PatterTest {

@Test
public void 특수문자_공백_포함_정규식_테스트() {
Pattern pattern = Pattern.compile("[ !@#$%^&*(),.?\":{}|<>]");

assertThat(pattern.matcher("").find(), is(false));
assertThat(pattern.matcher("helloworld").find(), is(false));
assertThat(pattern.matcher("hello").find(), is(false));

assertThat(pattern.matcher("hello world").find(), is(true));
assertThat(pattern.matcher(" helloworld ").find(), is(true));
assertThat(pattern.matcher("he!!o").find(), is(true));
assertThat(pattern.matcher("hell()").find(), is(true));
assertThat(pattern.matcher("\"hello\"").find(), is(true));
assertThat(pattern.matcher("hello^^").find(), is(true));
assertThat(pattern.matcher("<hello>").find(), is(true));
}

@Test
public void 특수문자_공백_미포함_정규식_테스트() {
Pattern pattern = Pattern.compile("[!@#$%^&*(),.?\":{}|<>]");

assertThat(pattern.matcher("").find(), is(false));
assertThat(pattern.matcher("helloworld").find(), is(false));
assertThat(pattern.matcher("hello world").find(), is(false));
assertThat(pattern.matcher(" helloworld ").find(), is(false));
assertThat(pattern.matcher("hello").find(), is(false));

assertThat(pattern.matcher("he!!o").find(), is(true));
assertThat(pattern.matcher("hell()").find(), is(true));
assertThat(pattern.matcher("\"hello\"").find(), is(true));
assertThat(pattern.matcher("hello^^").find(), is(true));
assertThat(pattern.matcher("<hello>").find(), is(true));
}
}
Share