0
Something went wrong with java code......
2 Réponses
+ 1
dot (or period) is a meta charecter in regex. It matches any single charecter.
If you want to match exactly a dot (and not *any charecter*) you'll need to escape dot with backward slash.
use "\\." instead of "."
+ 1
🇮🇳Omkar🕉 thanks
it's working...😇