English 中文(简体)
具有相同潜在启动字符的分隔 RegEx 模式匹配
原标题:Separating RegEx pattern matches that have the same potential starting characters
  • 时间:2012-05-23 02:41:34
  •  标签:
  • python
  • regex

我希望有一个与多个相同字符相匹配的 RegEx, 在一系列可能的字符范围内, 但是不将这些模式匹配返回成一个模式。 如何做到这一点?

为澄清起见:

我想要一种以 [a-c] 开头的图案, 并自动返回相同字符的任何数, 但不返回范围中的其他字符。 在 Aafaabbybcccc 的序列中, 它会找到图案 :

(aa、aa、bb、b、cccc)

但不包括以下内容:

(f), aabb, y, bcccc )

我不想使用多个 RegEx 模式搜索, 因为找到模式的顺序将决定另一个函数的输出。 这个问题是为了自我研究( 平通), 而不是功课目的。 (I am 也低于 15 个代表, 但只要我能, 就会回来投票。 )

最佳回答

问得好,用一个正方形,比如:

(?P<L>[a-c])(?P=L)+

这是更坚固的 - 您不仅限于 a- c, 如果您愿意, 您可以用 a- z 替换它。 它首先将 a- c 中的任何字符定义为 < code> L , 然后查看该字符是否再次发生一次或多次。 您想要使用此 Regex 运行 < code>re. findall ()

问题回答

您可以使用回引用 1 - 9 来捕捉先前匹配的第一至第九组 。

/([a-c])(1+)/

[a-c]: Matches one of the character.
1+  : Matches subsequent one or more previously matched character.

Perl :

perl -e  @m = "ccccbbb" =~ /([a-c])(1+)/; print $m[0], $m[1] 

cccc

皮顿:

>>> import re
>>> [m.group(0) for m in re.finditer(r"([a-c])1+",  aafaabbybcccc )]
[ aa ,  aa ,  bb ,  cccc ]




相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签