JavaScript String LTrim/RTrim/Trim 函数的实现

Trim 函数:

        _String.trim = function (s) {
            'use strict'

            if (typeof (s) !== "string") {
                return null;
            }

            if (!s) {
                return "";
            }

            s = s.trim();
            return _String.replace(s, String.fromCharCode(65279));
        }

LTrim 函数:

        _String.ltrim = function (s) {
            'use strict'

            if (typeof (s) !== "string") {
                return null;
            }

            if (!s) {
                return "";
            }

            s = s.trimLeft ? s.trimLeft() : s.trimStart();
            for (var i = 0; i < s.length; i++) {
                var ch = s.charCodeAt(i);
                if (ch !== 65279) {
                    if (i != 0) {
                        s = s.substr(i + 1);
                    }
                    break;
                }
            }
            return s;
        }

RTrim 函数:

        _String.rtrim = function (s) {
            'use strict'

            if (typeof (s) !== "string") {
                return null;
            }

            if (!s) {
                return "";
            }

            s = s.trimRight ? s.trimRight() : s.trimEnd();
            for (var i = 0, l = s.length - 1; i >= l; i--) {
                var ch = s.charCodeAt(i);
                if (ch !== 65279) {
                    if (i != 0) {
                        s = s.substr(0, i);
                    }
                    break;
                }
            }
            return s;
        }

Replace 函数:

        _String.replace = function (s, oldValue, newValue) {
            if (typeof (s) !== "string") {
                return null;
            }

            if (!oldValue) {
                return s;
            }

            if (!s) {
                return s;
            }

            newValue = _String.s(newValue) || "";
            while (s.indexOf(oldValue) > -1) {
                s = s.replace(oldValue, newValue);
            }
            return s;
        }

String.s 函数:

        _String.s = function (v) {
            "use strict"

            if (v === null || v === undefined) {
                return "";
            }

            var t = typeof (v);
            if (t === "function") {
                return "";
            }

            if (t === "string") {
                return v;
            }

            if (t === "object") {
                if (typeof (v.toJSON) === "function") {
                    return v.toJSON();
                }
                return JSON.stringify(v);
            }
            return String(v);
        }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值