]*?>.*?", "", RegexOptions.IgnoreCase); //str为需要校验的字符 str = Regex.Replace(str, @"[~`@#$%^&*()_+{}|<>/\[]]", "", Re"> 【字符串操作之】返回指定位置的字符和Unicode 字符代码 根据unicode返回字符→→charAt、charCodeAt和fromCharCode... - 11GX
首页 > 【字符串操作之】返回指定位置的字符和Unicode 字符代码 根据unicode返回字符→→charAt、charCodeAt和fromCharCode...

【字符串操作之】返回指定位置的字符和Unicode 字符代码 根据unicode返回字符→→charAt、charCodeAt和fromCharCode...

//charAt和charCodeAt分别返回指定位置处的字符和字符对应的unicode码
var str:String="abcdefg";
var str2=str.charAt(1);
var str3=str.charCodeAt(1);
trace(str2);
//b
trace(str3);
//98

 fromCharCode是个静态方法,根据unicode返回字符

var str:String=String.fromCharCode(97,98);
trace(str);
//ab

 

转载于:https://www.cnblogs.com/ywl01/archive/2012/07/01/2571846.html

更多相关: