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

I nedd the check whether the word ends with one of the _LNG , _DBL , _STR . My regex is

"_[(LNG|DBL|STR)]$"

but does work . Following must match but did'nt work. (I use java)

PARAM_LNG

I have tried following

"[(_LNG|_DBL|_STR)]$"

but it matchs with following although it has no underscore.

PARAMLNG

Can anyone show the right regex? Thanks.

share|improve this question

1 Answer

up vote 5 down vote accepted

Don't use [], that's a character class specification.

"_(LNG|DBL|STR)$"

Note that this will only match at the end of the string. Try:

"_(LNG|DBL|STR)\b"

to match any word ending with those suffixes inside a string.

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.