使用matchAll方法全局匹配{}内的内容

如何使用matchAll全局匹配{}内的内容?
定义方法:

let matchFn = (info) => {
        let reg = /\{(?[^{}]+)\}/g;
        // 匹配出所字段
        let matches = [...info.matchAll(reg)];
        let matchesKey = [];
        matches.forEach(item => {
            let groups = item.groups;
            matchesKey.push(groups.name);
        });
        return matchesKey;
};

调用例子:

matchFn('{a}{b}ccc{d}');

运行结果为: ["a", "b", "d"]

通过该方法即可获取大括号内匹配到的内容啦~~

用这个方法要特别注意兼容性问题。
这个方法还是个草案,在ios上是不支持的,如果要求兼容的话需要补丁,
可以使用该npm包解决兼容性问题https://www.npmjs.com/package/string.prototype.matchall。

参考资料:
MDN文档String.prototype.matchAll()

short-coated-black-and-brown-puppy-in-white-and-red-polka-39317.jpg

你可能感兴趣的:(使用matchAll方法全局匹配{}内的内容)