active questions tagged python+regex - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T09:35:14Zhttp://stackoverflow.com/feeds/tag/python+regexhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1872016/how-to-use-re-to-search-for-items-in-one-list-inside-another-list-in-python0How to use re to search for items in one list inside another list in PythonAlex2009-12-09T06:38:55Z2009-12-09T07:28:19Z
<p>I am reading a list of strings, each of which relate to a file name. However, each string is minus the extension. I have come up with the following code:</p>
<pre><code>import re
item_list = ['item1', 'item2']
search_list = ['item1.exe', 'item2.pdf']
matches = []
for item in item_list:
# Match item in search_list using re - I assume this is the best way to do this
regex = re.compile("^"+item+"\.")
for file in search_list:
if regex.match(file):
matches.append((item, file))
</code></pre>
<p>As for duplicate matches, I'm not intensely worried about two files being named 'foo.bar' and 'foo.foo.bar'. That being said, is there a better way of doing this?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1870954/python-regular-expression-across-multiple-lines1python regular expression across multiple lineshousehold2009-12-09T00:52:02Z2009-12-09T01:29:48Z
<p>I'm gathering some info from some cisco devices using python and pexpect, and had a lot of success with REs to extract pesky little items. I'm afraid i've hit the wall on this. Some switches stack together, I have identified this in the script and used a separate routine to parse the data. If the switch is stacked you see the following (extracted from the sho ver output) </p>
<pre><code>Top Assembly Part Number : 800-25858-06
Top Assembly Revision Number : A0
Version ID : V08
CLEI Code Number : COMDE10BRA
Hardware Board Revision Number : 0x01
Switch Ports Model SW Version SW Image
------ ----- ----- ---------- ----------
* 1 52 WS-C3750-48P 12.2(35)SE5 C3750-IPBASE-M
2 52 WS-C3750-48P 12.2(35)SE5 C3750-IPBASE-M
3 52 WS-C3750-48P 12.2(35)SE5 C3750-IPBASE-M
4 52 WS-C3750-48P 12.2(35)SE5 C3750-IPBASE-M
Switch 02
---------
Switch Uptime : 11 weeks, 2 days, 16 hours, 27 minutes
Base ethernet MAC Address : 00:26:52:96:2A:80
Motherboard assembly number : 73-9675-15
</code></pre>
<p>When I encounter this I need to extract the switch number & model for each in the table of 4, (sw can be ignored, but there can be between 1 and 9 switches) It's the multiple line thing that has got me as I've been ok with the rest. Any ideas please?</p>
<p>OK apologies. My regex simply started looking at the last group of - until.. then I couldn't work ou where to go!<br>
-{10]\s-{10}(.+)Switch</p>
<p>The model will change and the number of switches will change, I need to capture the 4 lines in this example which are </p>
<pre><code>* 1 52 WS-C3750-48P 12.2(35)SE5 C3750-IPBASE-M
2 52 WS-C3750-48P 12.2(35)SE5 C3750-IPBASE-M
3 52 WS-C3750-48P 12.2(35)SE5 C3750-IPBASE-M
4 52 WS-C3750-48P 12.2(35)SE5 C3750-IPBASE-M
</code></pre>
<p>But each switch could be a different model and there could be between 1 and 9. For this example ideally i'd like to get </p>
<pre><code>*,1,WS-C3750-48P
,2,WS-C3750-48P
,3,WS-C3750-48P
,4,WS-C3750-48P
</code></pre>
<p>(the asterisk means master)<br>
but getting those lines would set me on the right track</p>
http://stackoverflow.com/questions/1868481/find-two-of-the-same-character-in-a-string-with-regular-expressions1Find two of the same character in a string with regular expressionsBrandon2009-12-08T17:20:21Z2009-12-08T18:19:37Z
<p>This is in reference to a question I asked before <a href="http://stackoverflow.com/questions/1849185/how-to-do-conditional-character-replacement-within-a-string">here</a></p>
<p>I received a solution to the problem in that question but ended up needing to go with regex for this particular part.</p>
<p>I need a regular expression to search and replace a string for instances of two vowels in a row that are the same, so the "oo" in "took", or the "ee" in "bees" and replace it with the one of the letters that was replaced and a <code>:</code>.</p>
<p>Some examples of expected behavior:</p>
<p><code>"took"</code> should become <code>"to:k"</code></p>
<p><code>"waaeek"</code> should become <code>"wa:e:k"</code></p>
<p><code>"raaag"</code> should become <code>"ra:ag"</code></p>
<p>Thank you for the help.</p>
http://stackoverflow.com/questions/1862782/regular-expression-search-replace-help-needed-python1Regular Expression search/replace help needed, PythonBrandon2009-12-07T20:47:07Z2009-12-08T01:39:40Z
<p>One rule that I need is that if the last vowel (aeiou) of a string is before a character from the set ('t','k','s','tk'), then a <code>:</code> needs to be added right after the vowel.</p>
<p>So, in Python if I have the string <code>"orchestras"</code> I need a rule that will turn it into <code>"orchestra:s"</code></p>
<p>edit: The (t, k, s, tk) would be the final character(s) in the string</p>
http://stackoverflow.com/questions/1860375/text-extraction-from-email-in-python1Text extraction from email in PythonVictor P2009-12-07T14:40:14Z2009-12-07T22:22:21Z
<p>My users will send me posts by email ala <a href="http://www.posterous.com" rel="nofollow">Posterous</a></p>
<p>I'm using Google Apps Engine (GAE) to receive and parse emails. GAE returns the text part of the message.</p>
<p>I need to extract the post from the plain text part of the message.</p>
<p>The plain text can be "contaminated" with promotional headers, footers, signatures, etc.</p>
<p>Also I would like to leave out the "please post this:" or similar some people candidly include.</p>
<p>How would you achieve this?</p>
<p>Are there any tools (simpler than regex) I can use?</p>
<p><strong>UPDATE</strong></p>
<p><strong>Examples:</strong></p>
<p>(in all these examples the post is "Lorem ipsum sit amet..."</p>
<p>=====</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>
<p>Victor P<br>
victor.p@example.com<br>
visit my blog at: www.example.com/victor</p>
<p>=====</p>
<p>Hello, I like your page. Please can you include this: Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>
<p>=====</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>
<p>=====</p>
<p>If you find more examples of what a email can be, please feel free to include them in the post.</p>
http://stackoverflow.com/questions/1650244/python-regular-expression-2Python regular expressionSaneef2009-10-30T14:48:19Z2009-12-07T18:11:53Z
<p>How to parse the string <code>" {'result':(Boolean, MessageString)} "</code> using Python regular expressions to get <code>Boolean</code> and the <code>MessageString</code> separated into variables?</p>
http://stackoverflow.com/questions/520031/whats-the-cleanest-way-to-extract-urls-from-a-string-using-python2What's the cleanest way to extract URLs from a string using Python?jkp2009-02-06T11:51:57Z2009-12-06T17:14:30Z
<p>Hi all</p>
<p>Although I know I could use some hugeass regex such as the one posted <a href="http://geekswithblogs.net/casualjim/archive/2005/12/01/61722.aspx" rel="nofollow">here</a> I'm wondering if there is some tweaky as hell way to do this either with a standard module or perhaps some third-party add-on?</p>
<p>Simple question, but nothing jumped out on Google (or Stackoverflow).</p>
<p>Look forward to seeing how y'all do this!</p>
<p>Jamie</p>
http://stackoverflow.com/questions/1832893/python-regex-matching-unicode-properties7Python regex matching Unicode propertiesThomasH2009-12-02T13:25:41Z2009-12-05T15:24:31Z
<p>Perl and some other current regex engines support Unicode properties, such as the category, in a regex. E.g. in Perl you can use <code>\p{Ll}</code> to match an arbitrary lower-case letter, or <code>p{Zs}</code> for any space separator. I don't see support for this in either the 2.x nor 3.x lines of Python (with due regrets). Is anybody aware of a good strategy to get a similar effect? Homegrown solutions are welcome.</p>
http://stackoverflow.com/questions/1849447/how-can-you-detect-if-two-regular-expressions-overlap-in-the-strings-they-can-mat9How can you detect if two regular expressions overlap in the strings they can match?Joseph Garvin2009-12-04T20:26:42Z2009-12-04T21:38:43Z
<p>I have a container of regular expressions. I'd like to analyze them to determine if it's possible to generate a string that matches more than 1 of them. Short of writing my own regex engine with this use case in mind, is there an easy way in C++ or Python to solve this problem? </p>
http://stackoverflow.com/questions/1846833/matching-stored-keywords-phrases-in-text1matching stored keywords/phrases in textbowdengm2009-12-04T13:06:09Z2009-12-04T19:53:11Z
<p>Hi</p>
<p>I have a database table with around 1000 keywords/phrases (one to four words long) - This table changes rarely, so I could extract the data into something more useful (like a regular expression?) - So this is not finding / guessing at keywords based on natural language processing..</p>
<p>I then have a user inputting some text into a form that I'd like to match against my keywords and phrases.</p>
<p>The program would then store a link to each phrase matched next to the text.</p>
<p>So if we ran the algorithm on this question text against a few phrases that are in here, we'd get a result like so:</p>
<pre><code>{"inputting some text" : 1,
"extract the data" : 1,
"a phrase not here" : 0}
</code></pre>
<p>What are my options?</p>
<ol>
<li>Compile a regular expression</li>
<li>Some sort of SQL query</li>
<li>A third way?</li>
</ol>
<p>Bearing in mind that there's a 1000 possible phrases..</p>
<p>I'm running Django / Python with MySQL.</p>
<p>edit: I'm currently doing this:</p>
<pre><code>>>> text_input = "This is something with first phrase in and third phrase"
>>> regex = "first phrase|second phrase|third phrase"
>>> p = re.compile(regex, re.I)
>>> p.findall(text_input)
['first phrase','third phrase']
</code></pre>
http://stackoverflow.com/questions/1842608/regular-expression-to-replace-with-xml-node0Regular expression to replace with XML nodezyq5242009-12-03T20:17:01Z2009-12-04T04:15:27Z
<p>I'm using Python to write a regular expression for replacing parts of the string with a XML node.</p>
<p>The source string looks like:</p>
<pre>
Hello
REPLACE(str1) this is to replace
REPLACE(str2) this is to replace
</pre>
<p>And the result string should be like:</p>
<pre>
Hello
<replace name="str1"> this is to replace </replace>
<replace name="str2"> this is to replace </replace>
</pre>
<p>Can anyone help me?</p>
http://stackoverflow.com/questions/1836637/python-help-display-regular-expression-result0python help display regular expression result Lily2009-12-02T23:32:39Z2009-12-03T03:23:28Z
<p>Hi,</p>
<p>I am doing simple regular expressions in python</p>
<p>I am trying the re.split but things like ['\r\n', '\r\n'] are coming instead of the answer.
Can someone please tell me how to display the actual text please?</p>
<p>I tried this statement:</p>
<pre><code>t_html = re.split("<[a-zA-Z0-9\s\w\W]*>[a-zA-Z0-9\s\w\W]*</[a-zA-Z0-9\s\w\W]*>" ,s)
</code></pre>
<p>THanks</p>
http://stackoverflow.com/questions/1833873/python-regex-escape-characters0python regex escape characterstamb2009-12-02T16:02:01Z2009-12-02T19:13:38Z
<p>Hi.</p>
<p>We have:</p>
<pre><code>>>> str
'exit\r\ndrwxr-xr-x 2 root root 0 Jan 1 2000
\x1b[1;34mbin\x1b[0m\r\ndrwxr-xr-x 3 root root
0 Jan 1 2000 \x1b[1;34mlib\x1b[0m\r\ndrwxr-xr-x 10 root
root 0 Jan 1 1970 \x1b[1;34mlocal\x1b[0m\r\ndrwxr-xr-x
2 root root 0 Jan 1 2000 \x1b[1;34msbin\x1b[0m\r\ndrwxr-xr-x
5 root root 0 Jan 1 2000 \x1b[1;34mshare\x1b[0m\r\n# exit\r\n'
>>> print str
exit
drwxr-xr-x 2 root root 0 Jan 1 2000 bin
drwxr-xr-x 3 root root 0 Jan 1 2000 lib
drwxr-xr-x 10 root root 0 Jan 1 1970 local
drwxr-xr-x 2 root root 0 Jan 1 2000 sbin
drwxr-xr-x 5 root root 0 Jan 1 2000 share
# exit
</code></pre>
<p>I want to get rid of all the '\xblah[0m' nonsense using regexp. I've tried </p>
<pre><code>re.sub(str, r'(\x.*m)', '')
</code></pre>
<p>But that hasn't done the trick. Any ideas?</p>
http://stackoverflow.com/questions/1818622/python-2-3-regex-problem0python 2.3 regex problemburlsm2009-11-30T08:59:53Z2009-11-30T09:42:41Z
<p>how do i set the regular expressions flags like multiline and ignorecase in python 2.3?</p>
<p>in python 2.6 its like this</p>
<p><code>re.findall(pattern,string, re.multiline | re.ignorecase)</code></p>
<p>but this doesn't seem to wok for python 2.3, any ideas?</p>
<p>pointers appreciated</p>
<p>edit: sorry, it was python 2.3 not 2.4</p>
http://stackoverflow.com/questions/1491277/python-regex-object-has-no-attribute1Python Regex "object has no attribute"ives2009-09-29T08:32:01Z2009-11-28T14:14:37Z
<p>I've been putting together a list of pages that we need to update with new content (we're switching media formats). In the process I'm cataloging pages that correctly have the new content. </p>
<p>Here's the general idea of what I'm doing: </p>
<ol>
<li>Iterate through a file structure and get a list of files </li>
<li>For each file read to a buffer and, using regex search, match a specific tag </li>
<li>If matched, test 2 more regex matches </li>
<li>write the resulting matches (one or the other) into a database </li>
</ol>
<p>Everything works fine up until the 3rd regex pattern match, where I get the following: </p>
<pre><code>'NoneType' object has no attribute 'group'
</code></pre>
<p>I can comment out the 2nd match and the 3rd works fine. And it's a complete mystery to me. </p>
<pre><code># only interested in embeded content
pattern = "(<embed .*?</embed>)"
# matches content pointing to our old root
pattern2 = 'data="(http://.*?/media/.*?")'
# matches content pointing to our new root
pattern3 = 'data="(http://.*?/content/.*?")'
matches = re.findall(pattern, filebuffer)
for match in matches:
if len(match) > 0:
urla = re.search(pattern2, match)
if urla.group(1) is not None:
print filename, urla.group(1)
urlb = re.search(pattern3, match)
if urlb.group(1) is not None:
print filename, urlb.group(1)
</code></pre>
<p>as you can see, I've even tried using different variable names for the 2nd and 3rd pattern matches, which doesn't help at all. if i comment the entire URLA block, URLB works fine. </p>
<p>any idea what i might be doing wrong? or is there some type of shared regex object which isn't intended to be used in more than one or two instances? </p>
<p>the url's are a bit more complicated than listed above, which is why I'm using regex matches for the conditions. it's looking like I'll have to do multiple passes, but I don't grasp why I should have to.</p>
<p>thank you.</p>
http://stackoverflow.com/questions/1769023/is-there-any-regular-expression-engine-which-do-just-in-time-compiling0Is there any regular expression engine which do Just-In-Time compiling?S.Mark2009-11-20T08:22:38Z2009-11-28T08:12:25Z
<p><strong>My Questions is</strong></p>
<p>Is there any regular expression engine which do Just-In-Time compiling during regex pattern parsing and use when matching/replacing the texts? or where can I learn JIT for i386 or x64 architecture?</p>
<p><strong>Why I need that is,</strong> </p>
<p>I recently <a href="http://www.soemin.net/2009/11/memo-regular-expressions-part-2.html" rel="nofollow">trying to benchmark python's built-in regex engine </a> with normal C codes with around 10M data.</p>
<p>I found that for normal replace (for example <strong>ab</strong> to <strong>zzz</strong>) is relatively fast like just 2 to 3 times different to C</p>
<p>but for <code>[a-z]c</code> tooks around 5 to 8 times slower than C, </p>
<p>and with grouping (for example - <code>([a-z])(c)</code> to <code>AA\2\1BB</code> ) its tooks 20 to 40 times slower than C.</p>
<p>Its not Just-In-Time compiling yet, but I think If I could do just In time compling, It could faster a lot more.</p>
<p>ps: I use profiling for each regex patterns during compling patterns,
for eg, profile 1 for simple one like <code>ab</code>, profile 2 for range <code>[a-z]c</code>, profile 3 with grouping <code>([a-z])(c)</code>, each profile has seperate codes, so no extra cost needed when matching, and replacing simple patterns.</p>
<p>Any Ideas would be appreciated, Thanks in advance.</p>
<p><strong>Update 1:</strong></p>
<p>I have tried with psyco, and Its doesnot improve the speed that much.
May be because I am doing text replacing against big data, not looping many times.
If I am not wrong, Python's re.sub running it in natively already I think, so pysco cannot improve the speed that much.</p>
<p><strong>Update 2:</strong></p>
<p>I have tried with boost regex wrapped into python, but its even slower than python's regex, so It seems like the bottleneck is in python's string processing and Jan Goyvaerts also pointing me that point in the answer.</p>
<p><strong>Update</strong></p>
<p>I like to convert regex pattern <code>ab[a-z]c</code> to machine codes, like following equivlent C codes.</p>
<p>*s points to 10M Long Texts</p>
<pre><code>do{
if(*s=='a' && s[1]=='b' && s[2]>='a' && s[2]<='z' && s[3]=='c') return 1;
}while(*s++);
return 0;
</code></pre>
<p>any ideas?</p>
http://stackoverflow.com/questions/1811236/how-can-i-run-redemo-py-or-equivalent-on-a-mac1How can I run redemo.py (or equivalent) on a Mac?twneale2009-11-28T01:24:12Z2009-11-28T01:44:01Z
<p>In the python installation on my PC there is a sweet script in c:\python26\tools\scripts called redemo.py. It's a simple tk app for testing regular expressions. I wish I could get it--or something like it--running on my Mac, but I don't know how. The script doesn't appear to be part of the python installation on my mac. Ideas?</p>
http://stackoverflow.com/questions/499345/regular-expression-to-extract-url-from-an-html-link2Regular expression to extract URL from an HTML linkIFake2009-01-31T19:02:34Z2009-11-27T23:37:54Z
<p>Im newbie in Python, i learning regex, but need help here</p>
<p>Heres comes the source</p>
<pre><code><a href="http://www.ptop.se" target="_blank">http://www.ptop.se</a>
</code></pre>
<p>I trying to code a tool that only prints out <a href="http://ptop.se" rel="nofollow">http://ptop.se</a>, Can you help me please?</p>
http://stackoverflow.com/questions/1803713/python-regular-expression-matching-a-multiline-block-of-text-but-not-replacing-it0Python regular expression matching a multiline block of text but not replacing itunknown (google)2009-11-26T13:38:31Z2009-11-27T21:16:55Z
<p>Ok so i have this piece of code:</p>
<pre><code>def findNReplaceRegExp(file_name, regexp, replaceString, verbose=True, confirmationNeeded=True):
'''Replaces the oldString with the replaceString in the file given,\
returns the number of replaces
'''
# initialize local variables
cregexp = re.compile(regexp, re.MULTILINE | re.DOTALL)
somethingReplaced = True
ocurrences = 0
isAborted = False
# open file for read
file_in = open(file_name, 'r')
file_in_string = file_in.read()
file_in.close()
while somethingReplaced:
somethingReplaced = False
# if the regexp is found
if cregexp.search(file_in_string):
# make the substitution
replaced_text = re.sub(regexp, replaceString, file_in_string)
if verbose == True:
# calculate the segment of text in which the resolution will be done
# print the old string and the new string
print '- ' + file_in_string
print '+ ' + replaced_text
if confirmationNeeded:
# ask user if this should be done
question = raw_input('Accept changes? [Yes (Y), No (n), Abort (a)] ')
question = string.lower(question)
if question == 'a':
isAborted = True
print "Aborted"
break
elif question == 'n':
pass
else:
file_in_string = replaced_text
somethingReplaced = True
ocurrences = ocurrences + 1
else:
file_in_string = replaced_text
somethingReplaced = True
ocurrences = ocurrences + 1
# if some text was replaced, overwrite the original file
if ocurrences > 0 and not isAborted:
# open the file for overwritting
file_out = open(file_name, 'w')
file_out.write(file_in_string)
file_out.close()
if verbose: print "File " + file_name + " written"
</code></pre>
<p>And this file</p>
<pre><code>CMC_SRS T10-24400: DKU Data Supply: SN Time Break-In Area
CMC_SRS T10-24401: DKU Data Supply: SN Transponder Enable Area
CMC_SRS T10-24402: DKU Data Supply: SN Adjust Master Slave Area
CMC_SRS T10-24403: DKU Data Supply: SN ATEC Area
CMC_SRS T10-24404: DKU Data Supply: SN PTEC Area
CMC_SRS T10-25449: DKU Data Supply: SN Self Init Area
CMC_SRS T10-24545: DKU Data Supply: SN Time Area
CMC_SRS T10-4017: RFI display update
CMC_SRS T10-6711: Radio Interface to PLS Equipment
CMC_SRS T10-21077: Safety Requirements: Limit FM Power
</code></pre>
<p>When i call the procedure with this file and these parameters:
regexp=24403.*24404
replace=TESTSTRING</p>
<p>i get a coincidence (it matches and questions what to do) but when its time to replace nothing happens... Whats wrong??</p>
http://stackoverflow.com/questions/122277/how-do-you-translate-this-regular-expression-idiom-from-perl-into-python13How do you translate this regular-expression idiom from Perl into Python?Dan2008-09-23T16:55:18Z2009-11-27T01:05:41Z
<p>I switched from Perl to Python about a year ago and haven't looked back. There is only <i>one</i> idiom that I've ever found I can do more easily in Perl than in Python:</p>
<pre><code>if ($var =~ /foo(.+)/) {
# do something with $1
} elsif ($var =~ /bar(.+)/) {
# do something with $1
} elsif ($var =~ /baz(.+)/) {
# do something with $1
}
</code></pre>
<p>The corresponding Python code is not so elegant since the if statements keep getting nested:</p>
<pre><code>m = re.search(r'foo(.+)', var)
if m:
# do something with m.group(1)
else:
m = re.search(r'bar(.+)', var)
if m:
# do something with m.group(1)
else:
m = re.search(r'baz(.+)', var)
if m:
# do something with m.group(2)
</code></pre>
<p>Does anyone have an elegant way to reproduce this pattern in Python? I've seen anonymous function dispatch tables used, but those seem kind of unwieldy to me for a small number of regular expressions...</p>
http://stackoverflow.com/questions/1800817/how-can-i-get-part-of-regex-match-as-a-variable-in-python1How can I get part of regex match as a variable in python?Lucas2009-11-26T00:07:14Z2009-11-26T02:04:40Z
<p>In Perl it is possible to do something like this (I hope the syntax is right...):</p>
<pre><code>$string =~ m/lalala(I want this part)lalala/;
$whatIWant = $1;
</code></pre>
<p>I want to do the same in Python and get the text inside the parenthesis in a string like $1.</p>
http://stackoverflow.com/questions/1796053/regular-expression-to-match-a-string-only-when-certain-characters-dont-exist0Regular Expression to match a string only when certain characters don't existjohneth2009-11-25T10:34:21Z2009-11-25T21:22:31Z
<p>So, here's my question:</p>
<p>I have a crawler that goes and downloads web pages and strips those of URLs (for future crawling). My crawler operates from a whitelist of URLs which are specified in regular expressions, so they're along the lines of:</p>
<pre>(http://www.example.com/subdirectory/)(.*?)</pre>
<p>...which would allow URLs that followed the pattern to be crawled in the future. The problem I'm having is that I'd like to exclude certain characters in URLs, so that (for example) addresses such as:</p>
<pre>(http://www.example.com/subdirectory/)(somepage?param=1¶m=5#print)</pre>
<p>...in the case above, as an example, I'd like to be able to exclude URLs that feature ?, #, and = (to avoid crawling those pages). I've tried quite a few different approaches, but I can't seem to get it right:</p>
<pre>(http://www.example.com/)([^=\?#](.*?))</pre>
<p>etc. Any help would be really appreciated!</p>
<p>EDIT: sorry, should've mentioned this is written in Python, and I'm normally fairly proficient at regex (although this has me stumped)</p>
<p>EDIT 2: VoDurden's answer (the accepted one below) almost yields the correct result, all it needs is the $ character at the end of the expression and it works perfectly - example:</p>
<pre>(http://www.example.com/)([^=\?#]*)$</pre>
http://stackoverflow.com/questions/1791097/matching-multiple-regex-groups-and-removing-them0Matching multiple regex groups and removing themgreenie2009-11-24T16:12:15Z2009-11-25T00:55:30Z
<p>I have been given a file that I would like to extract the useful data from. The format of the file goes something like this:</p>
<pre><code>LINE: 1
TOKENKIND: somedata
TOKENKIND: somedata
LINE: 2
TOKENKIND: somedata
LINE: 3
</code></pre>
<p>etc...</p>
<p>What I would like to do is remove LINE: and the line number as well as TOKENKIND: so I am just left with a string that consists of 'somedata somedate somedata...'</p>
<p>I'm using Python to do this, using regular expressions (that I'm not sure are correct) to match the bits of the file I'd like removing.</p>
<p>My question is, how can I get Python to match multiple regex groups and ignore them, adding anything that isn't matched by my regex to my output string? My current code looks like this:</p>
<pre><code>import re
import sys
ignoredTokens = re.compile('''
(?P<WHITESPACE> \s+ ) |
(?P<LINE> LINE:\s[0-9]+ ) |
(?P<TOKEN> [A-Z]+: )
''', re.VERBOSE)
tokenList = open(sys.argv[1], 'r').read()
cleanedList = ''
scanner = ignoredTokens.scanner(tokenList)
for line in tokenList:
match = scanner.match()
if match.lastgroup not in ('WHITESPACE', 'LINE', 'TOKEN'):
cleanedList = cleanedList + match.group(match.lastindex) + ' '
print cleanedList
</code></pre>
http://stackoverflow.com/questions/1793663/python-html-scraping1Python HTML scrapingpns2009-11-24T23:23:25Z2009-11-25T00:32:35Z
<p>Hey,</p>
<p>It's not really scraping, I'm just trying to find the URLs in a web page where the class has a specific value. For example:</p>
<pre><code><a class="myClass" href="/url/7df028f508c4685ddf65987a0bd6f22e">
</code></pre>
<p>I want to get the href value. Any ideas on how to do this? Maybe regex? Could you post some example code?
I'm guessing html scraping libs, such as BeautifulSoup, are a bit of overkill just for this...</p>
<p>Huge thanks!</p>
http://stackoverflow.com/questions/1789009/i-am-trying-to-determine-if-a-string-is-a-question-how-can-i-analyze-the-sy0I am trying to determine if a string is a Question. How can I analyze the "?" symbol (python)alex2009-11-24T09:44:19Z2009-11-24T11:12:02Z
<p>This is a question:</p>
<pre><code>"Where is the car?"
</code></pre>
<p>This is NOT a question:</p>
<pre><code>"Check this out: http://domain.com/?q=test"
</code></pre>
<p>How do I write a function to analyze a string so that we know for sure it is a question and not <strong>part of a URL</strong>? </p>
http://stackoverflow.com/questions/1788710/how-do-i-remove-something-form-a-list-plus-string-matching2How do I remove something form a list, plus string matching? alex2009-11-24T08:39:34Z2009-11-24T09:31:19Z
<pre><code>[(',', 52),
('news', 15),
('.', 11),
('bbc', 8),
('and', 8),
('the', 8),
(':', 6),
('music', 5),
('-', 5),
('blog', 4),
('world', 4),
('asia', 4),
('international', 4),
('on', 4),
('itunes', 4),
('online', 4),
('digital', 3)]
</code></pre>
<p>Suppose I have this list, with tuples inside. </p>
<p>How do I go through the list and remove elements that don't have alphabetical characters in them?</p>
<p>So that it becomes this:</p>
<pre><code>[('news', 15),
('bbc', 8),
('and', 8),
('the', 8),
('music', 5),
('blog', 4),
('world', 4),
('asia', 4),
('international', 4),
('on', 4),
('itunes', 4),
('online', 4),
('digital', 3)]
</code></pre>
http://stackoverflow.com/questions/1782586/speed-of-many-regular-expresions-in-python2Speed of many regular expresions in pythonWilduck2009-11-23T11:32:22Z2009-11-23T18:23:11Z
<p>I'm writing a python program that deals with a fair amount of strings/files. My problem is that I'm going to be presented with a fairly short piece of text, and I'm going to need to search it for instances of a fairly broad range of words/phrases.</p>
<p>I'm thinking I'll need to compile regular expressions as a way of matching these words/phrases in the text. My concern, however, is that this will take a lot of time.</p>
<p>My question is how fast is the process of repeatedly compiling regular expressions, and then searching through a small body of text to find matches? Would I be better off using some string method?</p>
<p>Edit: So, I guess an example of my question would be: How expensive would it be to compile and search with one regular expression versus say, iterating 'if "word" in string' say, 5 times? </p>
http://stackoverflow.com/questions/1781554/regular-expression-matching-everything-except-a-given-regular-expression0regular expression matching everything except a given regular expressionShailesh Kumar2009-11-23T07:17:03Z2009-11-23T09:14:53Z
<p>I am trying to figure out a regular expression which matches any string which doesn't start with mpeg. A generalization of this is matching any string which doesn't start with a given regular expression.</p>
<p>I tried something like as follows:</p>
<pre><code>[^m][^p][^e][^g].*
</code></pre>
<p>The problem with this is that it requires at least 4 characters to be present in the string. I was not able to figure out a good way to handle this and a generalized way to handle this in a general purpose manner. </p>
<p>I will be using this in Python. </p>
<p>Thanx in advance.</p>
http://stackoverflow.com/questions/285938/decomposing-html-to-link-text-and-target4Decomposing HTML to link text and targetsundeep2008-11-13T00:38:56Z2009-11-22T09:20:38Z
<p>Given an HTML link like</p>
<pre><code><a href="urltxt" class="someclass" close="true">texttxt</a>
</code></pre>
<p>how can I isolate the url and the text? </p>
<p><strong>Updates</strong></p>
<p>I'm using Beautiful Soup, and am unable to figure out how to do that. </p>
<p>I did </p>
<pre><code>soup = BeautifulSoup.BeautifulSoup(urllib.urlopen(url))
links = soup.findAll('a')
for link in links:
print "link content:", link.content," and attr:",link.attrs
</code></pre>
<p>i get </p>
<pre><code>*link content: None and attr: [(u'href', u'_redirectGeneric.asp?genericURL=/root /support.asp')]* ...
...
</code></pre>
<p>Why am i missing the content? </p>
<p>edit: elaborated on 'stuck' as advised :)</p>
http://stackoverflow.com/questions/1770569/regex-to-split-1st-colon1Regex to Split 1st Colon_bravado2009-11-20T13:56:31Z2009-11-20T14:23:07Z
<p>I have a time in ISO <a href="http://en.wikipedia.org/wiki/ISO%5F8601" rel="nofollow">8601</a> ( <code>2009-11-19T19:55:00</code> ) which is also paired with a name <code>commence</code>. I'm trying to parse this into two. I'm currently up to here:</p>
<pre><code>import re
sColon = re.compile('[:]')
aString = sColon.split("commence:2009-11-19T19:55:00")
</code></pre>
<p>Obviously this returns:</p>
<pre><code>>>> aString
['commence','2009-11-19T19','55','00']
</code></pre>
<p>What I'd like it to return is this:</p>
<pre><code>>>>aString
['commence','2009-11-19T19:55:00']
</code></pre>
<p>How would I go about do this in the original creation of <code>sColon</code>? Also, do you recommend any Regular Expression links or books that you have found useful, as I can see myself needing it in the future!</p>
<p>EDIT:</p>
<p>To clarify... I'd need a regular expression that would just parse at the very first instance of <code>:</code>, is this possible? The text ( <code> commence </code> ) before the colon can chance, yes...</p>