私はフォームの 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
いますが、正規表現の構築が間違っていると思います。助けてください。