Facing some problem with a regex match. Trying to match the first part of the text (excluding the many blanks in the beginning) ending with the comma. The text will always be different but the format (spaces in the beginning and ending with comma) the same.
" Tamramaa Starp Concert Apple - CMP196-GTR, lackerad i Gloss Cherry Red finish.Kppnsert virvel"
…I want to match: “Tamramaa Starp Concert Apple - CMP196-GTR”
I thought ([^ ])[^.,]+ would work perfectly and using Regex-validators I get the wanted result but using Uipath it doesn’t work. Any advice?