Perl Regular Expression?

otakucon2001

New member
Given this variable:
$mystring = "000000009: I WAS EATING \(-21913584\)";

I want to grab only "I WAS EATING". How can I do this?

($mystring =~ m/(^d+)/) grabs the 000000009)

(Reason I wanna use RegExp is because that variable changes)
 
Back
Top