码迷,mamicode.com
首页 > 其他好文 > 详细

正则获取中英文长度

时间:2020-07-21 23:26:57      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:mat   fun   index   cti   截取   长度   bcd   正则   code   

var str = ‘abcd来了efg‘; 
var len = str.match(/[^ -~]/g) == null ? str.length : str.length + str.match(/[^ -~]/g).length ;

截取固定长度的中英文字符串 (汉字算2个)

function sliceStr(str, len) {
				let i = 0,
					num = 0;
				let arr = str.split(‘‘)
				arr.some((item, index) => {
					if (/[\u4E00-\u9FA5]/.test(item)) {
						num += 2
					} else {
						num += 1
					}

					if (num === len || (/[\u4E00-\u9FA5]/.test(arr[index + 1])) && (num === (len - 1))) {
						i = index
						return true
					}
					return false
				})
				return str.slice(0, i + 1)
			}

正则获取中英文长度

标签:mat   fun   index   cti   截取   长度   bcd   正则   code   

原文地址:https://www.cnblogs.com/chengyunshen/p/13356965.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!