Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嘿伙计们,我有很多 HTML 可以用来格式化
myString + "<somehtml></somehtml>";
需要 2 个正则表达式,一个用来替换所有新行,myString + " 一个用来替换所有行尾";
myString + "
";
只需使用 MyEclipse,查找和替换启用正则表达式。谁能帮帮我?
各个正则表达式引擎可能会有所不同,但一般来说,'^' 将匹配行首,而 '$' 将匹配行尾。