Stupid RE question

M

Michael W Cocke

I'm sure this is obvious, but I'm missing it - What's the regular
expression to extract everything from the start of the line to the
first hyphen?

Thanks!

Mike-
 
J

Jim Gibson

Michael W said:
I'm sure this is obvious, but I'm missing it - What's the regular
expression to extract everything from the start of the line to the
first hyphen?

if( $string =~ m/^([^-]*)-/ ) {
print "match: $1\n";
}

FYI: this newsgroup is defunct; try comp.lang.perl.misc in the future.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top