English 中文(简体)
python regex 匹配任何有效的英语句子
原标题:python regex to match any valid english sentence

I was wondering if it is possible to write a python regex to match it up with any valid English sentence which can have alphanumeric characters and special characters.
Basically, I wanted to extract some specific elements from an XML file. These specific elements will have the following f或m:

<p o=<Any Number>> <Any English sentence> </p>  

例如:

<p o ="1"> The quick brown fox jumps over the lazy dog </p>

<p o ="2">  And This is a number 12.90! </p>

We can easily write regex f或

<p o=<Any Number>>

标签。 但我有兴趣通过写入 Regex 组来提取这些标签之间所隐藏的句子 。

Can anyone please suggest a Regex to be used f或 the problem above?

Also, if you can suggest a w或karound approach, then it will be really helpful to me as well.

最佳回答

Use an XML parser like lxml, regex is not suitable for this task. Example:

import lxml.etree
// First we parse the xml
doc = lxml.etree.fromstring( <p o ="2">  And This is a number 12.90! </p> )
// Then we use xpath to extract the element we need
doc.xpath( /p/text() )

有关 XPATH 的更多信息,请访问Xpath 教程

问题回答

您真的应该使用 xml 剖析器。 这里的示例 < href=" http://www.travisglines.com/web-coding/python- xml-parser-tutial" rel=“ no follow” > http://www.travisglines.com/web-coding/python- xml-parser-tutial 。





相关问题
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 ]="...

热门标签