gpt4 book ai didi

javascript匹配以 "and end with "开头的字符串;以及介于两者之间的任何东西?

转载 作者:行者123 更新时间:2023-11-29 21:57:20 24 4
gpt4 key购买 nike

了解如何使用 jaascipt 匹配一种模式:

var pattern = somePattern

if (!pattern.test(email)) { //do something }

但是如果我必须匹配以 "开头并以 "结尾的字符串怎么办?以及介于两者之间的特定长度(10)的任何东西所以如果我有这个:

"ww#="$==xx"; (acceptable)
"w#="$==xx"; (Not acceptable, the length is 9 between the " and the ";)
ww#="$==xx"; (Not acceptable), doesn't start with "
"ww#="$==xx" (Not acceptable), doesn't end with ";

如何使用 js 实现此目的?

最佳答案

使用 .{10} 精确匹配 10 个字符。

^".{10}";$

DEMO

关于javascript匹配以 "and end with "开头的字符串;以及介于两者之间的任何东西?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25757309/

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