[Java] "\" replace 하기
2014. 4. 11. 17:10ㆍ프로그래밍/Java
1. "\"문자 치환하기 (replaceAll)
- "\" 이 문자를 replaceAll 하기위해선 아래와 같이 하면 안되고,
-> replaceAll("\\", ""); (x)
- "/" 를 붙혀줘야한다.
-> replaceAll("\\/", ""); (O)
명심~!!
'프로그래밍 > Java' 카테고리의 다른 글
[Java] String -> int , int - > String 변환 (0) | 2014.05.08 |
---|---|
[Java] java.lang.IllegalStateException: Cannot create a session after the response has been committed (2) | 2014.04.21 |
[Java/Jsp] c:forEach index의 처음, 마지막, 카운트 값 구하기 (0) | 2014.04.11 |
Attribute qualified names must be unique within an element 에러 해결 (0) | 2014.04.10 |
[Java] Java에서 Shell command 실행 (0) | 2014.03.07 |