近日在做项目的时候,经常会在页面上处理一些数据.结果发现自己js掌握的并不是很好.那就在这里记录js的点点滴滴吧. 1. 去除字符串中的 html 标签 function delHtmlTag(str){ return str.replace(/<[^>]+>/g,""); } var str = "<span style='display:none;'>This is test</span><br/>"; st…
为什么要对字符串编码? 某些字符串中包含html标签,不编码,页面输出就乱了. PHP下怎么对字符串编码? htmlentities vs htmlspecialchars htmlentities 与htmlspecialchar 区别: htmlentities is identical to htmlspecialchars() in all ways, except with htmlentities(), all characters which have HTML character…
使用正则判断一个字符串中是否包含中文或者中文字符 代码实现如下: import java.util.regex.Matcher; import java.util.regex.Pattern; /** * Created by Miracle Luna on 2019/12/20 */ public class ChineseCheck { public static void main(String[] args) { String str = "Hello! <满江红>"…