我在文本文件中有以下内容
some texting content <img src="cid:part123" alt=""> <b> Test</b>
我从文件中读取它并将其存储在字符串中,即 inputString
expectedString = inputString.replaceAll("\\<img.*?cid:part123.*?>",
"NewContent");
我得到预期的输出,即
some texting content NewContent <b> Test</b>
基本上,如果在 img 和 src 之间有行尾字符,如下所示,它不起作用,例如下面
<img
src="cid:part123" alt="">
有没有办法正则表达式在匹配时忽略行尾字符?