오늘은 와이프님의 부탁으로 영문만 뽑아내는 자바 프로그램을 만들어 보았다 -_-
package expTest.com.exp.test;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class ExpTestClass {
public static void main(String[] args) {
Pattern nonValidPattern = Pattern.compile("[a-zA-Z]");
String str = "1234 @#$@#$@#abc123123ZZZZZZZZ1231312313";
Matcher matcher = nonValidPattern.matcher(str);
String result = "";
while (matcher.find()) {
result += matcher.group();
}
System.out.println(result);
}
}
배워서 남주는것이 아니다 마누라 주는것이다 ㄷㄷㄷㄷ
'Development > Java' 카테고리의 다른 글
002.[Spring Framework] - 스프링 프레임워크에 톰켓을 이용하여 서버설정 (0) | 2015.06.05 |
---|---|
001.[Spring Framework] - 스프링 프로젝트 만들기[STS로 스프링 시작하기] (0) | 2015.06.05 |
AWS S3 파일업로드 SDK 설정방법 (0) | 2014.12.30 |
AWS S3 파일업로드 SDK 설정방법 (2) | 2014.12.30 |
AWS S3에 파일 업로드/다운로드 Sample Source (2) | 2014.12.30 |