我试过研究 preg_replace,但我对正则表达式没有太多经验。
我想要做的是替换以冒号结尾的部分文本并将其变为粗体,并在之前插入一个换行符,在之后插入 2 个换行符。
IE 转换此文本
title1: is some text here. title2: another piece of text.
至
**title1:**
is some text here.
**title2:**
another piece of text
我试过做这样的事情......
preg_replace("!\*(.*?)\*!$:","\<br \/\>\<strong\>!\*(.*?)\*!\<\/strong\>\<br \/\>",$text);
我似乎无法让它工作。
任何人都可以帮忙吗?
谢谢
和我