我有一个 NSString 形式的对象
"this is [i]1[/i] and that is [i]2[/i] and there we have [i]3[/i], and so on"
[i]1[/i] 是对位于某处的图像编号 1 的引用。我想使用正则表达式匹配和替换来获得以下输出:
"this is <img src="root/1.png"> and that is <img src="root/2.png"> and there we have <img src="root/3.png">, and so on"
我使用一个NSRegularExpression
类,但我认为我的正则表达式构造是错误的。请帮忙。