开发者

NSRegularExpression problem for newbie

开发者 https://www.devze.com 2023-04-02 13:15 出处:网络
i am a regular expression newbie. I have a working code using nsregularexpression. i am modifying it a little.

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 f开发者_运维技巧irst line of the text. i need to get NSRange till that and i dont want to change it to caps.

please suggest solutions.


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

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号