我試圖捕捉使用NSRegularExpression雖然不知道是文本字符串一個YouTube鏈接如何捕捉整個鏈路我可以得到它使用此匹配:NSRegularExpression一個YouTube鏈接
NSRegularExpression *regex = [NSRegularExpression
regularExpressionWithPattern:@"http://youtube.*"
options:NSRegularExpressionCaseInsensitive
error:&error];
示例串:
"Hello please take a look at the following: https://www.youtube.com/watch?v=C-UwOWB9Io4&feature=youtu.be For tomorrow thanks."
有關如何實現這一點的任何想法?
編輯例如URL – Md1079
ObjC或雨燕看起來像Objective-C的。 –
ObjC是語言感謝 – Md1079