hi
what is the rex for extract all brackets contain this pattern
[AB_123] [ZXY_987]
1-check all brackets if start with AB_ extract this AB_123
2-check all brackets if start with ZXY_ extract this ZXY_987
3-put all this in single field that call "Codes"
any idea?
thanks
| rex max_match=0 "\[(?<Codes>(AB|ZXY)[^\]]+)"
| rex max_match=0 "\[(?<Codes>(AB|ZXY)[^\]]+)"