Regular Expression 썸네일형 리스트형 정규표현식에서... 돌리면 아래와 같은 exception.. Exception in thread "main" java.util.regex.PatternSyntaxException: Unexpected internal error near index 1 \ ^ 이유. What happens is that the compiler sees \\ as an escape for \, so it looks for something after the \\ and finds \h which isn't appropriate. You want it to see \\ so you need to escape the first \ to \\ and you need to escape the second \ to \\. 출처 : http://www.c.. 더보기 이전 1 다음