私は文字列を持っています:"My goal today is to work out 30 minutes [Last update: May 20, 2013 by Joe Smith] and eat healthy"
誰かが部分文字列を抽出するNSRegularExpression
Objective -Cで作成してください:
[Last update: May 20, 2013 by Joe Smith]
角かっこで囲まれた文字列の部分を基本的に消去し[]
て、最後の文字列が次のようになるようにしたいと思います。
正しい正規表現は次のとおりです。
NSRegularExpression *regex =
[NSRegularExpression regularExpressionWithPattern:@"[Last Update:*]"
options:NSRegularExpressionCaseInsensitive error:&error];
で始まる正規表現"\b"
や、角かっこをエスケープする正規表現をオンラインで見たこと "\[Last update:*\]"
があります。