gpt4 book ai didi

javascript - 获取忽略数字索引的子字符串

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:33:23 26 4
gpt4 key购买 nike

我有以下两个字符串:

var block = "//div[@class='gd-row browse-grid-row'][1]/div[@class='gd-col gu3'][1]/div"

var full = "//div[@class='gd-row browse-grid-row'][1]/div[@class='gd-col gu3'][2]/div[@class='product-unit unit-4 browse-product new-design ']/div[@class='pu-details lastUnit']/div[@class='pu-price']/div[@class='pu-border-top']/div[@class='pu-final']/span"

我需要检查 block 是否是完全忽略所有索引的子字符串。

基本上我想忽略所有形式的模式:

'[数字]'

检查子字符串时。我如何在 JavaScript 中执行此操作?

最佳答案

使用replaceindexOf:

var regex = regex = /\[\d+\]/g;

full.replace(regex, '').indexOf(block.replace(regex, '')) > -1

关于javascript - 获取忽略数字索引的子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31200718/

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