Hi, Here is the challenge :mrgreen:
Assume you have a source string like this
#1>3>4>7$8$9$12>3>6>3$4$5$55#
(> defines the order and $ means 2 items are together)
and you have to write a search string which will search for a pattern in the source string
A search can be like this
1>55 - returns true, as it exists in the source string
3$4>55 - returns false
7$12>4$55 - true, pattern exists
4>7>12 - false
How do you write a single search string which can search any of the above or similar search criteria?