如何在regex .match()断言中插入变量?

时间:2019-06-14 10:43:59

标签: regex automated-tests e2e-testing web-testing testcafe

我想在正则表达式断言中添加一个变量“ example”。

const example = Selector('xyz');

await t.expect(getLocation()).match(/^https:\/\/int-.*.example.com\/en\/example\/-\/  ** HERE SHOULD BE INSERTED A VARIABLE, 'example' ** \/$/)

我该怎么办?

1 个答案:

答案 0 :(得分:3)

您可以使用RegExp Constructor来制作。