我有一些文字
some text [http://abc.com/a.jpg] here will be long text
can be multiple line breaks again [http://a.com/a.jpg] here will be other text
blah blah
我需要转换成
<div>some text</div><img src="http://abc.com/a.jpg"/><div>here will be long text
can be multiple line breaks again</div><img src="http://a.com/a.jpg"/><div>here will be other text
blah blah</div>
为了获取<img>
标签,我替换\[(.*?)\]
为<img src="$1"/>
,导致
some text<img src="http://abc.com/a.jpg"/>here will be long text
can be multiple enters again<img src="http://a.com/a.jpg"/>here will be other text
blah blah
但是,我不知道如何将文本包装在<div>
.
我正在使用 RegexKitLite 在 iPhone 上做所有事情