i want to extract the word after the 2nd & 3rd underscore (_
) or the word between the 2nd underscore & space.
my sample data would be:
COL_POS_CJMA_CA_03.09.17
COL_DPU_CJER_CK_03.08.17
COL_POS_CJNE CA_03.09.2017
COL_DPU_CJEK CK_03.08.2017
my results should be:
CJMA
CJER
CJNE
CJEK
I already have this _[^_]*_([^_]*)_
And I could extract the 1st two results.
If any one could help me extract the 3rd & 4th results
A regex that says between the 3rd underscore or a space
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…