字符串如下:<div id="attachment_16696" class="wp-caption alignnone" style="width: 460px">
。
我希望的是:<div id="attachment_16696" class="wp-caption alignnone" style="width: 275px">
。
我都實現的差不多了,還有一個問題,比如,如果是 1000px ,因為不匹配就無法實現。
怎麼樣能讓雖然不是 460px ,但是我能操作成 260px
下面的方法使用 NSRegularExpression 類修改HTMLdiv標記的寬度類型屬性:
// Takes Div markup in the following formats:
// <div id="something" class="something" style="width: Xpx">
// <div id="something" class="something" width="X">
// And replaces X with desired value.
- (NSString *)setDivMarkup:(NSString *)markup width:(NSInteger)width
{
NSString *regexToReplaceWidth = @"width(:|=)(\")?\\s*\\d+\\s*(px)?";
NSError *error = NULL;
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:regexToReplaceWidth
options:NSRegularExpressionCaseInsensitive
error:&error];
return [regex stringByReplacingMatchesInString:markup
options:0
range:NSMakeRange(0, markup.length)
withTemplate:[NSString stringWithFormat:@"width$1$2%d$3", width]];
}