In message <[email protected]>, Harsha1 writes: >I want to know how to escape dot(.) from being acting as universal >character. ... >So i want to right regex which will take (dot) as dot only not as any other >character.
I'm not a jakarta-regexp user, but the usual way is to escape a meta-character with a backslash. As a Java string that would look like: "\\." daniel --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
