新手的 NSRegularExpression 问题

发布于 2024-12-02 22:32:20 字数 334 浏览 1 评论 0原文

我是正则表达式新手。我有一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

季末如歌 2024-12-09 22:32:20

\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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文