HI Takeyoshi,
This Regex may work for you,
(Winter|Spring|Fall) [2-9][0-9]{3}
Explanation:
Therefore, this regular expression will match strings like Winter 2022, Spring 2034, Fall 2099, but will not match strings like Summer 2023 or Spring 1999.
Please try it and let me know,
Hope it helps!
Hi All I have a Equivalent Question regarding this Actually I also need to validate some text contains Eg: starting with PCO in it Follwed by Truck , van, Trailer etc in it .we need some regular expression format for this text.
so I tried like this not working in If else condition block in mendix
isMatch($new/Location,'^PCO ')= true @Robert Price please help