JavaScript 正则表达式练习

发布于 2021-12-08 12:48:49 字数 1548 浏览 1166 评论 0

1.字符中包含了形如 {exp} 的表达式,请用对象中的变量替换所有的表达式?

var mailContent = 

`
Dear {receiverName}:

Happy new year for {year}.

Your sincerly {senderName}
{date}
`;

var obj = {receiverName: 'Maggie', year: 2020, senderName: 'Yefei', date: '2020-01-12'};

function format(template, data) {
    // 实现:
    return template.replace(/\{(\w+)\}/g, function(word) {
        return data[word.substring(1,word.length-1)];
    })
}

console.log(format(mailContent, obj));

2.按照如下要求解析 url 地址中的参数

const input = "https://www.taobao.com?a=1&b=2&c=3&d#name";

// 期望解析结果:{ a: 1, b: 2, c: 3, d: null }

function parseUrl(url) {
    // 实现:
    const match = url.match(/\?(.+)\#/);
    const param = match[1];
    const splits = param.match(/(\w(=\w)?)/g);
    const result = {};
    for(var i = 0; i < splits.length; i++) {
        var [k,v] = splits[i].split('=');
        result[k] = v || null;
    }
    return result;
}

console.log(parseUrl(input))

更细致的介绍:

"a=1&b=2&c=3&d".match(/\w+(=\d+)?/g)

// ["a=1", "b=2", "c=3", "d"]

第一步处理

var matched = sourceUrl.match(/(?<=\?)(.+)(?=#)/);
var matched = sourceUrl.match(/([^?]+)(?=#)/);

["a=1&b=2&c=3&d", "a=1&b=2&c=3&d", index: 23, input: "https://www.taobao.com?a=1&b=2&c=3&d#name", groups: undefined]

第二步处理

matched[1].match(/\w+(=\d+)?/g);
(4) ["a=1", "b=2", "c=3", "d"]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

0 文章
0 评论
831 人气
更多

推荐作者

lorenzathorton8

文章 0 评论 0

Zero

文章 0 评论 0

萧瑟寒风

文章 0 评论 0

mylayout

文章 0 评论 0

tkewei

文章 0 评论 0

17818769742

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文