在文本字符串中,我想查找任何出现的 [[mymarker-id]] 并将其替换为自定义 html 字符串:
'<div>id</div>'
例如:
"this is a sample text [[mymarker-123_4Efd]] for illustration purpose"
会成为
"this is a sample text <div>123_4Efd</div> for illustration purpose"
id 为 8 个字符的长字符串匹配:([a-zA-Z0-9_-]){8}
我希望我可以说我在问之前尝试了很多事情,但是我对正则表达式很不好