如何使用正则表达式返回查询参数?

时间:2018-12-04 12:44:10

标签: javascript regex

如何使用正则表达式和replace函数来检索:

"?topic=MyCategory"

从这些字符串中:

"?topic=marketing&page=1"
"?topic=Sales&page=2"
"?topic=Recruiting"
"?page=2&topic=recruiting"

但是从其中检索null或空字符串:

"?page=4"
"" (empty string)

我已经能够到达: \?topic =(。*?)&并替换为$ 1。

希望作为后续问题可以提出疑问,在哪里可以找到好的正则表达式指南/速查表。

0 个答案:

没有答案