String변수.replaceAll(" ","");
이 아닌,
String변수.replaceAll("\\p{Space} ","");
API 링크
http://download.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html
===========================================
(블루투스 스캐너 작업을 하다 이상한 문자와 띄어쓰기로 시간을 많이 잃었다 )
영어와 숫자 제외하고 지우기
String변수.replaceAll("\\W","");
클래스화 링크 http://cafe.naver.com/javafriends/247
자바 정규식 표현방법 예 http://blog.naver.com/tombjjang/80122756653
이 아닌,
String변수.replaceAll("\\p{Space} ","");
API 링크
http://download.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html
===========================================
(블루투스 스캐너 작업을 하다 이상한 문자와 띄어쓰기로 시간을 많이 잃었다 )
영어와 숫자 제외하고 지우기
String변수.replaceAll("\\W","");
클래스화 링크 http://cafe.naver.com/javafriends/247
자바 정규식 표현방법 예 http://blog.naver.com/tombjjang/80122756653
'안드로이드' 카테고리의 다른 글
안드로원 정펌 복구하기 (12) | 2010.11.21 |
---|---|
안드로원 2.2 프로요 커펌하기 (7) | 2010.11.01 |
[안드로이드] 타이틀바 없애기 (0) | 2010.10.20 |
안드로이드 로그캣 콘솔 한글보기 (0) | 2010.08.23 |
안드로이드 Activity 와 Intent 코딩 (0) | 2010.08.09 |