Hey guys ... I am trying to do a replace ...
how can I search the following string for '_w' and find all the letters following that position until I hit a space ?
Here is a sample string "Suspense_1944-12-21_BrightonStrangler_wJohnLoder UPGRADE-2 SS"
I am trying to extract 'JohnLoder' in this example ...
I tried using :
_w(\S*)
and
(?<=_w)\S*
What am I doing wrong ? Thanks !!!! =)