我正在尝试将我的推文解析为可点击的链接,以供提及、标签和链接。主题标签和链接正在工作。但是我提到的部分有问题......
例如,这是我从中解析推文后的一个字符串。
普通推文
@stubru @festivalinfo @MNMbe Genk on stage - news: Amatorski vervangt Ewert & The Two Dragons - http://t.co/mNEaTsEDyC
解析推文
<a href<a href='http:<a href='http://twitter.com///twitt'>//twitt</a> er.com/='http:<a href='http://twitter.com///twitt'>//twitt</a> '>='http:<a href='http://twitter.com///twitt'>//twitt</a> </a> er.com/stubru'>@stubru</a> @festivalinfo @MNMbe Genk on stage - news: Amatorski vervangt Ewert & The Two Dragons - <a href='http://t.co/mNEaTsEDyC' target='_blank'>http://t.co/mNEaTsEDyC</a>
这是我用于解析的 de 函数。
NSRegularExpression* regex2 = [NSRegularExpression regularExpressionWithPattern:@"(?:\\s|\\A)[@]+([A-Za-z0-9-_]+)" options:0 error:&error];
NSArray* matches2 = [regex2 matchesInString:processedString options:0 range:NSMakeRange(0, [processedString length])];
NSString* processedString2 = [processedString copy];
for ( NSTextCheckingResult* match in matches2 )
{
NSString* matchText3 = [processedString2 substringWithRange:[match range]];
NSString *matchText4 = [matchText3 stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
NSString *search2 = [matchText4 stringByReplacingOccurrencesOfString:@"@" withString:@""];
NSString *searchHTML2= [NSString stringWithFormat:@"<a href='http://twitter.com/%@'>%@</a> ",search2,matchText3];
processedString2 = [processedString2 stringByReplacingOccurrencesOfString:matchText3
withString:searchHTML2];
}
tweetText = processedString2;
有人可以帮我弄这个吗?
编辑 预期的输出应该是
<a href="http://twitter.com/stubru">@stubru</a><a href="http://twitter.com/festivalinfo">@festivalinfo</a>href="http://twitter.com/MNMbe">@MNMbe</a> Genk on stage - news: Amatorski vervangt Ewert & The Two Dragons - <a href='http://t.co/mNEaTsEDyC' target='_blank'>http://t.co/mNEaTsEDyC</a>
亲切的问候