About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
hikamen
2/25/2018 - 10:50 AM
share
Share
add_circle_outline
Save
将字符串中的回车换行符替换为html中的换行标签<br>
将字符串中的回车换行符替换为html中的换行标签.java
content_copy
file_download
somString.replaceAll("[\\r\\n]", "<br>");
clear