gpt4 book ai didi

javascript - 如何匹配javascript中已知前缀和后缀包围的子字符串

转载 作者:搜寻专家 更新时间:2023-11-01 05:01:25 28 4
gpt4 key购买 nike

给定一个字符串,例如:

example string with an intended nested string to match.

如何隔离只知道前缀和后缀的子字符串,例如在 intendedto match 之间?

最佳答案

non-capturing parentheses 使用正则表达式,如下所示:

string = 'example string with an intended nested string to match.';
regexp = /(?:intended)(.*)(?:to match)/;
firstMatch = regexp.exec(string)[1]; // " nested string "

问号在正则表达式中有多种用途,括号问号冒号形式 (?:more regex)non-capturing parentheses

有关 exec() 字符串的更多详细信息,请参阅 MDN。 match()regular expressions

关于javascript - 如何匹配javascript中已知前缀和后缀包围的子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16472489/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com