iOS 判断字符串是纯汉字还是含有汉字

2025-04-04 00:00:40
推荐回答(1个)
回答1:

var reg = /^.*[\u4e00-\u9fa5].*$/;
var str = "1f的df";
reg.test(str);