新手的 NSRegularExpression 问题
我是正则表达式新手。我有一个使用 nsregularexpression 的工作代码。我正在稍微修改一下。
__nameRegularExpression = [[NSRegularExpression alloc] initWithPattern:@"^\\w+" options:NSRegularExpressionCaseInsensitive error:nil];
@“^\w+”它指的是什么?它会将第一个单词转换为大写吗?
我在文本的第一行有一个 \r\n 。我需要得到 NSRange 直到那并且我不想将其更改为大写。
请提出解决方案。
i am a regular expression newbie. I have a working code using nsregularexpression. i am modifying it a little.
__nameRegularExpression = [[NSRegularExpression alloc] initWithPattern:@"^\\w+" options:NSRegularExpressionCaseInsensitive error:nil];
@"^\w+" what does it refer to ? does it convert first word to capital ?
I have a \r\n in first line of the text. i need to get NSRange till that and i dont want to change it to caps.
please suggest solutions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
\w 表示匹配单词字符。 (双“\”只是转义单个“\”。
\w+ 表示匹配一个或多个单词字符。假设贪婪匹配,它将匹配尽可能多的单词字符(最长匹配)。
具体而言,\w 表示 unicode
[\p {Ll}\p{Lu}\p{Lt}\p{Lo}\p{Nd}]
表示(按顺序)
字母小写、字母大写、字母首字母大写、字母其他、数字十进制数字。
\w means match a word character. (the double '\' is just escaping a single '\'.
\w+ means match one or more word characters. Assuming greedy matching it will match as many word characters as possible (longest match).
Specifically \w means unicode
[\p{Ll}\p{Lu}\p{Lt}\p{Lo}\p{Nd}]
which means (in order)
Letter lowercase, Letter uppercase, Letter titlecase, Letter other, Number decimal digit.