- What is available: a string of unkown format, current date.
- What can be provided: date regexp
- What needs to be done: parse string according to specified date regexp and obtain date
Details: I'm actually trying to extract a date from the file name. Some regexp or something similar can be provided through config.
So the question is devided in two parts:
- What exactly should be provided in the config (just regexp or should I use cosum simple stuff or maybe certain libs exist)?
- What's the most optimal processing algorithm (i.e. there's a string, and I can call matches on it, but that's gonna result in trying all the possible substrings)?