2
votes
4answers
107 views
Pythonic way to find a regular expression match
Is there a more succinct/correct/pythonic way to do the following:
url = "http://0.0.0.0:3000/authenticate/login"
re_token = re.compile("<[^>]*authenticity_token[^>]*valu …
1
vote
2answers
28 views
Matching tags in BeautifulSoup
I'm trying to count the number of tags in the 'soup' from a beautifulsoup result. I'd like to use a regular expression but am having trouble.
The code Ive tried is as follows:
reg …
5
votes
6answers
166 views
Reverse a word in Vim
How can I reverse a word in Vim? Preferably with a regex or normal-mode commands, but other methods are welcome too:
word => drow
Thanks for your help!
PS: I'm in windows XP
…
1
vote
2answers
80 views
How to match alphabetical chars without numeric chars with Python regexp ?
Using Python module re, how to get the equivalent of the "\w" (which matches alphanumeric chars) WITHOUT matching the numeric characters (those which can be matched by "[0-9]")?
N …
-1
votes
2answers
88 views
How can I parse text in Python?
Sample Text:
SUBJECT = 'NETHERLANDS MUSIC EPA'
CONTENT = 'Michael Buble performs in Amsterdam Canadian singer Michael Buble performs during a concert in Amsterdam, The Netherlands …
3
votes
9answers
173 views
How to split a string by commas positioned outside of parenthesis?
Hi,
I got a string of such format:
"Wilbur Smith (Billy, son of John), Eddie Murphy (John), Elvis Presley, Jane Doe (Jane Doe)"
so basicly it's list of actor's names (optional …
0
votes
4answers
102 views
Python name grabber
if I have a string in the format of
(static string) name (different static string ) message (last static string)
(static string) name (different static string ) message (last sta …
1
vote
1answer
33 views
Help with a AppEngine Handler Regex?
I've been trying to design a Google AppEngine Python handler regex and haven't been too successful in getting it to work.
I'm trying to handle API calls similar to OpenStreetMap's …
1
vote
3answers
79 views
How can be implemented recursive regexp in python?
I'm interested how can be implemented recursive regexp matching in Python (I've not found any examples :( ). For example how would one write expression which matches "bracket balan …
-2
votes
3answers
75 views
Python regular expression
How to parse the string " {'result':(Boolean, MessageString)} " using python re to get boolean and the messagestring seperate in into variables?
1
vote
4answers
76 views
Forward slash in a Python regex
I'm trying to use a Python regex to find a mathematical expression in a string. The problem is that the forward slash seems to do something unexpected. I'd have thought that [\w\d\ …
0
votes
5answers
83 views
Help with my regular expression. (Python)
If string "x" contains any letter or number, print that string.
How to do that using regular expressions?
Below is wrong?
if re.search('^[A-Z]?[a-z]?[0-9]?', i):
print i
0
votes
3answers
74 views
Extracting ALL matches of a nested regular expression in python
I am trying to parse a list of items which satisfies the python regex
r'\A(("[\w\s]+"|\w+)\s+)*\Z'
that is, it's a space separated list except that spaces are allowed inside quo …
0
votes
4answers
107 views
regular expression in python
Hi
I am sorry if this question is too simple but I can't seem to reason this out. I want to parse a string. I want to extract the words between 'The final score is: ' and '.'. In o …
1
vote
2answers
52 views
python re: no such group
Hi! I'm newbie in Python. I can't understand why this code does not work:
reOptions = re.search(
"[\s+@twitter\s+(?P<login>\w+):(?P<password>.*?)\s+]",
documen …
