Hi,
I am having difficulty groking this regex stuff. I have a string:
"SomeStuff D: Drive is full"
In perl I can do something like if (my $var =~ /\s{1}.:\s/) { ...} where I can check the string to see if there is any occurance of space-anyletter-colon-space
I am trying to do the same in...