程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-替換變量子字符串

ios-替換變量子字符串

編輯:編程綜合問答
替換變量子字符串

字符串如下:<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]];
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved