I've got a workflow output that output's full path's combined with some extra data in 1 line.
//server/filelocation\workflowfilename.yxmd - randomnumbers \csv_input.csv
I'm trying to use some regex to extract the .yxmd part of this long string but i'm getting stuck on this.
the workflow names are some what different but the string always are build up with
filelocation\workflowname.yxmd -
The easy part is to extract filenames that don't have the same name as the folder there are placed in and let regex start at the / character.
But some of the workflow names are the same as some folder names.
like //server/01Sales\01Sales.yxmd - extra data.
is there a way to only extract the 01Sales.yxmd with regex?