GY12_Word_31Dec20_Word2_d1.10_G12_1234
I have 7 to 9 delimited(_) string and I want to determine if each delimit is in proper format/appropriate value
I am using regex tokenize but for some reason it doesn't seem to work
| Current Value | How to check if it's correct |
| GY20 | First two letters should be GY followed by two digit number 18 to current last two digit of year |
| Word | Any word must not contain special characters excluding period and underscore. |
| 31Dec20 | \d{2}\w+\d{2,4} |
| Word2 | Contains word 'Licensing' or any 3 character length |
| d1.10 | left must be lowercase of v and second number must be a period. |
| G12 | G\d{1,2} |
| 1234 | \d{3,4} |
is it possible for this to be written in one regex expression or should do split to columns then do each regex expression?