Hello guys,
I'm trying to get the information from a string like this
Nutella 01_2017
Nutella01_2017
using Regex tool and output mode Parse with this Regular Expression
([\0-9\_]*)|([A-Za-z]*)
and also This one
(\d+\_\d+)|([A-Za-z]+)
but i can't get the good resualt
How can i achieve this?
(The Space between nutella and the date was deleted by a Cleansing tool which can get ignored)