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
|
|
The question is not very clear, but I guess this is what you are looking for:
Your match will be in the 1st group. Here's some sample Python code:
As seen on codepad. A more generalized solution:
Also available on codepad |
|||||
|
|
|
Given the following regex...
...$1 or whatever your first match is in your language will be wrestle. |
|||||||||||||||
|
|
Assuming it is always separated by spaces
Then you can get the value by the first group match. |
|||
|
|
|
You regex would be something like this
|
|||||
|
|
Use: |
||||
|
|
Maybe re is unnecessary when str.split looks like it will suffice:
|
|||
|
|