我regexkitlite
用来在 xcode 中验证我的 iPhone 应用程序中的一些数据。
我正在进行一个发送 json 结果的 api 调用:
"taskDate": newDate("September 23, 2011 00:00:00")
我如何使用正则表达式将其转换为:
"taskDate": "newDate("September 23, 2011 00:00:00")"
我想用引号将每个“taskdate”键的值括起来。
编辑:添加 OP 的评论
这是我正在使用的:
[resultString replaceOccurrencesOfRegex:@"new Date((.*?)\")," withString:@"\"\"," range:NSMakeRange(0, [resultString length])];
其中 resultString 是包含“new Date(....”的字符串