English 中文(简体)
元素位置改变时匹配的正则表达式
原标题:Regular Expression to match when element locations change
  • 时间:2012-05-23 00:17:59
  •  标签:
  • regex

我需要匹配这个标签, 从这些标签中提取值。 问题是这些标签是动态生成的, 每当页面刷新后, 就会有人决定切换这些标签 。

所以标签可能是这个:

<input type="hidden" value="838218230" name="vstablepid_2717_1State">

或此:

<input type="hidden" name="vstablepid_2717_1State" value="838218230" >

我可以分别做每个, 像这样的东西:

value="(.+?)".*"vstable

是否有一种说法可以对两者都适用?


到目前为止,设想如下:

使用某种可选的语法, 我可以说在值之前或之后找到稳定匹配, 但我仍然需要在线上找到至少一个可变匹配 。

最佳回答

使用前观来维护 vstable , 然后抓取您的内容( 从组中) :

<(?=[^>]*vstable[^>]*>)[^>]*value="(.*?)"[^>]*>

regex (? =...) 的外观部分要求 vsstable 出现在下一个 之前

问题回答

您不能同时使用两个语句来表示 < code> 或 吗?

(?:value="(.+?)".*"vstable)|(?:"vstable.*?value="(.+?)")

还是我漏掉了什么?

Edit :这种方法有一个警告----有时第一个捕捉组会出现数值,有时第二个捕捉组会出现数值。在这方面,波西米亚人的答复(也)更好。

您当前的正则 :

value="(.+?)".*"vstable 

强制规定 vstable 发生在 value 之后。

你可以简单地把那个部分拿出来 简单地让它成为:

value="(.+?)"  

对于大多数regex 编纂者来说, < code>.+? 应该不敏感, 当它达到结束引号 时将停止匹配。 这样, 无论在哪里出现 value , 它都会被拾取 。

但这取决于您的需要, 以及您是否具体想要选择 value 的线, 即 vstable 发生于该线上, 但问题中没有具体说明, 所以我给出一个通用答案 。





相关问题
Uncommon regular expressions [closed]

Recently I discovered two amazing regular expression features: ?: and ?!. I was curious of other neat regex features. So maybe you would like to share some tricky regular expressions.

regex to trap img tag, both versions

I need to remove image tags from text, so both versions of the tag: <img src="" ... ></img> <img src="" ... />

C++, Boost regex, replace value function of matched value?

Specifically, I have an array of strings called val, and want to replace all instances of "%{n}%" in the input with val[n]. More generally, I want the replace value to be a function of the match ...

PowerShell -match operator and multiple groups

I have the following log entry that I am processing in PowerShell I m trying to extract all the activity names and durations using the -match operator but I am only getting one match group back. I m ...

Is it possible to negate a regular expression search?

I m building a lexical analysis engine in c#. For the most part it is done and works quite well. One of the features of my lexer is that it allows any user to input their own regular expressions. This ...

regex for four-digit numbers (or "default")

I need a regex for four-digit numbers separated by comma ("default" can also be a value). Examples: 6755 3452,8767,9865,8766,3454 7678,9876 1234,9867,6876,9865 default Note: "default" ...

热门标签