In Java regular expression, it has "\B" as a non-word boundary.
http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Pattern.html
If I have a 'char', how can I check it is a non-word boundary?
Thank you.
|
In Java regular expression, it has "\B" as a non-word boundary. http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Pattern.html If I have a 'char', how can I check it is a non-word boundary? Thank you. |
||||
|
The boundary has a special meaning. It has actually a zero-length match and can therefore not be matched on a single character. It is used to determine the position between a non-word char and a word-char. Also see http://regular-expressions.info/wordboundaries.html. I however understood that this question is more whether the given char can possibly denote the start or end of a word boundary. From the javadoc which you linked (here is the latest version):
So, a word character matches
|
|||||||||||||||||
|
|
The question is very peculiar, but it's true that a
The last line may be surprising, but such is the nature of anchors. See also |
|||||
|
or if you want to digits to be also parts of a word:
|
|||
|
|
|
A boundary is a position between two characters, so a character can never be a boundary. If you want to match a character that is not surrounded by word boundaries, e. g. the character
Remember to escape the backslashes in a Java string, as in
|
|||
|
|
Check this answer for a discussion of just what exactly a |
|||
|
|
^doesn't refer to a character, it refers to the position before the first character). So the question itself is a bit meaningless, you might need to clarify so we know exactly what you want. – Mark Peters Jun 2 '10 at 21:12