I have a list as such:
myList: ("ab";"bc";"cd","de");
I would like to get a sublist like that contains "b" I know i can do this:
myList like "*b*"
However this returns a binary list. 1100b; How can I return a list of ("ab";"bc") instead?
question from:https://stackoverflow.com/questions/66056899/getting-a-sublist-using-regex