[self flattenHTML:str]
}
- (NSString *)flattenHTML:(NSString *)html {
NSScanner *theScanner
NSString *text = nil
theScanner = [NSScanner scannerWithString:html]
while ([theScanner isAtEnd] == NO) {
// find start of tag
[theScanner scanUpToString:@"<" intoString:NULL]
// find end of tag
[theScanner scanUpToString:@">" intoString:&text]
// replace the found tag with a space
//(you can filter multi-spaces out later if you wish)
html = [html stringByReplacingOccurrencesOfString:
[NSString stringWithFormat:@"%@>", text]
withString:@""]
} // while //
NSLog(@"-----===%@",html)
return html
}
统一处理数据的,都放在了这个 filter.wxs 文件了,比如时间处理,很多页面都要用到
filter.wxs :
使用
微信文字过滤小程序叫“文字过滤小助手”,它是一款专为微信用户提供的文字过滤服务的小程序,可以帮助用户快速、准确地过滤不良信息,帮助用户避免发布违规内容,提高微信账号的安全性。小程序的功能非常强大,可以根据用户的需求进行定制,过滤掉不良信息,如政治敏感词汇、色情暴力等,从而保护用户的账号安全。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)