一些自己用到的正则表达式

(?is)<table[^>]*>(?:(?!</table>).)*</table>  --取字符中的table集合

(?is)<table[^>]*id="tb_readmore"[^>]*>(?:(?!</table>).)*</table> --去指定ID的Table集合

(?is)<tr>(?:\s*<td[^>]*>(.*?)</td>)*\s*</tr>  --取tr集合

(?is)<tr[^>]*>(?:\s*<td[^>]*>(.*?)</td>)*\s*</tr>  --取tr的集合并按td分组

(?is)<td[^>]*>(?:(?!</td>).)*</td>  --取td的集合

<div.*[^>]>.*</div> --取div集合

(?i)<a.*href="(?<link>.*[^"])"\s.*[^>]>(?<name>.*)</a> --取得链接地址和名称

(?is)<a[^>]*?href=(['"])?(?<url>[^'"\s>]+)\1[^>]*>(?<text>(?:(?!</?a\b).)*)</a> --取得链接地址和名称

(?is)<a[^>]*?href=(['"])?(?<url>/m[^'"\s>]+)\1[^>]*>(?<text>(?:(?!</?a\b).)*)</a> --取得/m开头的链接的地址集合
(?is)<td[^>]*>(?<text>(?:(?!</?td\b).)*)</td>--取td的集合

(?is)<img[^>]*?src=(['"])?(?<url>[^'"\s>]+)\1[^>]*/>--取img的src

(?is)<img[^>]*?src=(['"])?(?<url>[^'"\s>]+)[^>]*title=(['"])(?<title>[^'"\s>]+)[^>]*/> --取得img的src和title

<div.*[^>]>[^<>]*(((?'DIV'<div[^>]*>)[^<>]*)+((?'-DIV'</div>)[^<>]*)+)*(?(DIV)(?!))</div>--取嵌套div的组合

function getUrlParam(name) {
    var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
    var r = window.location.search.substr(1).match(reg);
    if (r != null) return unescape(r[2]); return null;
};


         String.prototype.trimEnd = function (chars)  {
            if (chars == null) {
                chars = FRL.strings.whiteSpaceChars;
            }
            if (this == null || this == "") {
                return "";
            }
            var i;
            var l = this.length;
            for (i = this.length - 1; (i >= 0) && (chars.indexOf(this.charAt(i)) > -1); i--) {
            }
            return this.substring(0, i + 1);
        };
        String.prototype.trimStart = function (chars)  {
            if (chars == null) {
                chars = FRL.strings.whiteSpaceChars;
            }
            if (this == null || this == "") {
                return "";
            }
            var i;
            var l= this.length;
            for (i = 0; (i < l) && (chars.indexOf(this.charAt(i)) > -1); i++) {
            }
            return this.substring(i);
        };
        String.prototype.trim = function (chars) {
            if (chars == null) {
                chars = FRL.strings.whiteSpaceChars;
            }
            var source = this;
            if (source == null || source == "") {
                return "";
            }
            var i;
            var l;
            l = source.length;
            for (i = 0; (i < l) && (chars.indexOf(source.charAt(i)) > - 1); i++) {

            }
            source = source.substring(i);
            l = source.length;
            for (i = source.length - 1; (i >= 0) && (chars.indexOf(source.charAt(i)) > - 1); i--) {
            }
            source = source.substring(0, i + 1);
            return source;
        };

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

踏平扶桑

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值