Skip to content

Commit 4966420

Browse files
committed
Just remove a strange symbol
1 parent 1d19bcb commit 4966420

File tree

1 file changed

+1
-1
lines changed
  • 9-regular-expressions/03-regexp-character-classes

1 file changed

+1
-1
lines changed

9-regular-expressions/03-regexp-character-classes/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ alert( "Hello, Java!".match(/\bHell\b/) ); // null (no match)
113113
alert( "Hello, Java!".match(/\bJava!\b/) ); // null (no match)
114114
```
115115

116-
Once again let's note that `pattern:\b` makes the searching engine to test for the boundary, so that `pattern:Java\b` finds `match:Java` only when followed by a word boundary, but it does not add a letter to the result. §
116+
Once again let's note that `pattern:\b` makes the searching engine to test for the boundary, so that `pattern:Java\b` finds `match:Java` only when followed by a word boundary, but it does not add a letter to the result.
117117

118118
Usually we use `\b` to find standalone English words. So that if we want `"Java"` language then `pattern:\bJava\b` finds exactly a standalone word and ignores it when it's a part of `"JavaScript"`.
119119

0 commit comments

Comments
 (0)