在 Eclipse 中,我们可以使用*
搜索文件。找到下图显示_Eclipse搜索功能。我想在JavaScript中实现相同的搜索。我尝试了一些Regex
但是没有像 Eclipse 那样完美地工作。
是否有Regex
或算法?
答案 0 :(得分:1)
var string = "Hi this is a test string";
var search = "*st";
search = search.replace(/"\*"/,".");
var matchedResults = string.match(new RegExp(search),"g")
matchedResults将包含所有结果