我在 iOS 中学习正则表达式,看到了这个教程:http ://www.raywenderlich.com/30288/nsregularexpression-tutorial-and-cheat-sheet
对于 \b,它看起来像这样:
\b 匹配单词边界字符,例如空格和标点符号。to\b 将匹配“to the moon”和“to!”中的“to”,但不会匹配“tomorrow”。\b 对于“整个单词”类型匹配很方便。
和\s:
\s 匹配空白字符,例如空格、制表符和换行符。hello\s 将匹配 "Well, hello there!" 中的 "hello"。
我对此有两个问题:
1)what is the difference between \s and \b? when to use which?
2)\b is handy for "whole word" type matching -> Don't understand the meaning..
这两个需要一些指导。