我刚刚发现 jquery 修剪功能(使用 1.8.x)不会修剪日文空格。这个问题有更好的解决方案吗?
问问题
842 次
2 回答
1
对于 ES5 shim,包括(假定)ES5 String.trim() 方法的完整实现,请参阅https://github.com/kriskowal/es5-shim
// ES5 15.5.4.20
// http://es5.github.com/#x15.5.4.20
var ws = "\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u2003" +
"\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028" +
"\u2029\uFEFF";
if (!String.prototype.trim || ws.trim()) {
// http://blog.stevenlevithan.com/archives/faster-trim-javascript
// http://perfectionkills.com/whitespace-deviations/
ws = "[" + ws + "]";
var trimBeginRegexp = new RegExp("^" + ws + ws + "*"),
trimEndRegexp = new RegExp(ws + ws + "*$");
String.prototype.trim = function trim() {
if (this === undefined || this === null) {
throw new TypeError("can't convert "+this+" to object");
}
return String(this)
.replace(trimBeginRegexp, "")
.replace(trimEndRegexp, "");
};
}
于 2013-02-26T16:16:22.457 回答
1
读完之后我写了一些东西:
https://github.com/jquery/jquery/pull/896
$.extend({
jTrim: function(str){
var re = /^[\s\xA0\uFEFF\u1680\u180E\u2000-\u200A\u202F\u205F\u3000]+|[\s\xA0\uFEFF\u1680\u180E\u2000-\u200A\u202F\u205F\u3000]+$/g
return str.replace(re,"");
}
});
console.log(">"+$.jTrim(' よろしくお願い申し上げます。')+"<");
于 2013-02-26T16:06:00.000 回答