Vojtech Bubnik 7afabcde95 PlaceholderParser: Implemented one_of() matching function:
1st parameter is the text to match against,
the rest of the parameters are pattern to be matched:
either strings, then the match is exact,
or regex enclosed in //
or regex string starting with ~

For example
one_of("a", "a", "b")
	finds a in "a", "b"
one_of("abc", /.*a.*/)
	matches "abc" using regular expression /.*a.*/
2023-03-20 15:55:18 +01:00
..
2022-03-08 09:22:56 +01:00
2020-03-25 14:35:41 +01:00
2022-09-29 14:19:39 +02:00
WIP
2022-02-03 16:10:03 +01:00