I have a a filename below and I want to extract year and _TEXT part.
fle_2019-11-17A17-21-09.01(_TEXT).txt
I am able to do this using two regex and then join the results.
(?<=\_)(\d{4})(?=\-)
This gives me year
(?<=\()(.*)(?=\)) This gives me _TEXT
Is there a way to get this from a single expression?