Could any please help in getting regex for below type to incorporate in to the existing type.
I have below list of type with numbers. I have existing regex code for the below list, I need to add one more type to the existing code. Could you please help to alter the existing regex code to incorporate the existing and new type.
Existing Type with Number
OP-XXXXXXXXXX
RR-XXXXXXXXX
QFR-XXXXXXXXXX
AA-XXXXXXXXXX
SR-XXXXXXX
DAT-XXXXXXXXXX
HUIP-XXXXXXXX
IGOL-XXXXXXXXXX
TUOQ-XXXXXXXXXX
WIN-XXXXXXXXXX
FIG-XXXXXXXXXX
LLOC- XX/XXX/XXX/XXX/XXX/XXX/XXX/XXX/XXX/XXX
First charters are types and followed by - or / with XXXXX(Numbers). I need to add below type.
SALESTUOQ_XXXXXXXXXX.
Regex code -
.?(?=-) to get the Type. The outcome is example WIN,FIG,LLOC
(?<=-).?(?=(|$)) to get the Number(XXXXX) for the above types.
Need the above code to be modified for SALESTUOQ_XXXXXXXXXX. Which will be incorporated with the above list of types.