PDA

View Full Version : substitution regex question


webdev
08-25-2009, 11:12 PM
I'm trying to cut off the text leading up to the whitespace past the >. For example the string is 'Web & Programming > Testing & QA Contractor' and my regex is$job->{'title'} =~ s/^.+>\s+//;I need to end up with just 'Testing & QA Contractor'. Can someone point me in the right direction?