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.