검색결과 리스트
글
LANGUAGE/!$%!% ERROR NOTE
2016. 12. 1. 05:07
!markdown
### Error (에러)
```no
java.lang.IllegalArgumentException: named capturing group has 0 length name
```
### Problem (문제)
### Solved(해결)
JAVA
```java
replacement = replacement.replaceAll("\\$", "\\\\\\$");
strToReplace = strToReplace.replaceAll(reg, replacement);
```
GROOVY
```groovy
replacement = replacement.replaceAll('\\$', '\\\\\\$')
strToReplace = strToReplace.replaceAll(reg, replacement)
```
### Refference (참고)
[http://sojw.tistory.com/1169741915](http://sojw.tistory.com/1169741915)
'LANGUAGE > !$%!% ERROR NOTE' 카테고리의 다른 글
[Java] Unsupported major.minor version 51.0 (0) | 2017.01.30 |
---|---|
[ERwin9] Mart version validation failed. Details: Mart Server is not reachable, please check network and mart service health. (0) | 2016.12.15 |
[Ruby] Could not find a valid gem 'compass' (>= 0) (0) | 2016.11.23 |
[Oracle] ORA-09817 write to audit file failed (0) | 2016.11.02 |
[Oracle] EXP-00091 (1) | 2016.11.01 |