Search
Share
정규표현식
특정문자가 n번이상 반복할 경우
String
str str
=
str
.
replaceAll
(
"\\.{2,}"
,
"."
)
;
Java
복사