Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would I extract the word 'wrestle' from the following:

type=weaksubj len=1 word1=wrestle pos1=verb stemmed1=y priorpolarity=negative

using a regular expression?

Thanks

share|improve this question
2  
Depends. Are you looking for the first word after 'word1='? Could it have upper and lower case characters? Other special characters? I find that once you think about these things the regex almost writes itself. – Spacedman Sep 29 '10 at 16:20

6 Answers

up vote 7 down vote accepted

The question is not very clear, but I guess this is what you are looking for:

word1=(\w+)

Your match will be in the 1st group. Here's some sample Python code:

import re
yourstring = 'type=weaksubj len=1 word1=wrestle pos1=verb stemmed1=y priorpolarity=negative'

m = re.search(r'word1=(\w+)', yourstring)
print m.group(1)

As seen on codepad. A more generalized solution:

import re
def get_attr(str, attr):
    m = re.search(attr + r'=(\w+)', str)
    return None if not m else m.group(1)

str = 'type=weaksubj len=1 word1=wrestle pos1=verb stemmed1=y priorpolarity=negative'

print get_attr(str, 'word1')  # wrestle
print get_attr(str, 'type')   # weaksubj
print get_attr(str, 'foo')    # None

Also available on codepad

share|improve this answer
thanks, that worked :) – James Eggers Sep 29 '10 at 16:45
Great answer. +1 – Ruel Sep 29 '10 at 23:38

Given the following regex...

/word1=(\w+)/

...$1 or whatever your first match is in your language will be wrestle.

share|improve this answer
in python, what should it look like? thanks – James Eggers Sep 29 '10 at 16:25
1  
I believe it's result = re.match(pattern, string) – Ruel Sep 29 '10 at 16:28
@James see my answer – NullUserException Sep 29 '10 at 16:31
2  
@Ruel: You want re.search(), not re.match(). The latter always anchors the search to the start of the string. – Tim Pietzcker Sep 29 '10 at 16:32
thanks @NullUserException, it works :) – James Eggers Sep 29 '10 at 16:45

Assuming it is always separated by spaces

word1=([^ ]+)

Then you can get the value by the first group match.

share|improve this answer

You regex would be something like this

/.*word1=(\w+)/
share|improve this answer
This also doesn't work – NullUserException Sep 29 '10 at 16:24
If you edit your answer, it would be nice to comment about it. I was confused for a while why this wouldn't work. Though the starting .* is still pointless. – teukkam Sep 29 '10 at 16:31

Use: /word1=(\w+)/

share|improve this answer
Yep, thanks about that. Edited. The non-greedy matching caused the regex to match a single character only. :P – Ruel Sep 29 '10 at 16:26

Maybe re is unnecessary when str.split looks like it will suffice:

>>> s = "type=weaksubj len=1 word1=wrestle pos1=verb stemmed1=y priorpolarity=negative"
>>> dd = dict(ss.split('=',1) for ss in s.split())
>>> dd['word1']
'wrestle'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.