extracting alphanumeric values following some given text in a sentence

99 Views Asked by At

I want to extract some alphanumeric values in a sentence.The values will be after or before some given text pattern. I have already tries regexner tool of stanford nlp.But i want to do it using some other tool like tokenregex of parse. situation.To enter the building code is 123A.The access code is 456.There are many sentences like these two .I want to extract the code values from sentences like this.

1

There are 1 best solutions below

0
On

The simplest answer to this is "look for any number of letters, then look for at least one (can be more) digit, followed by any number of letters."

So you end up with something like /\w*\d+\w*/. If the regex engine you use doesn't understand \w or \d, you can also try /[a-z]*[0-9]+[a-z]*/ instead.