Why, oh, why, little regexp?

D

Daniel Waite

'cost * tax'.match(/([a-z]+)*/).to_a
=> ["cost", "cost"]

Why?

I'm reading it as... Take one or more characters between a and z, store
them into a back reference, then repeat the previous match zero or more
times.

Now, that regexp doesn't do what I want it to do, but what it IS doing
doesn't make sense to me.

What I'd like is to grab all the "words" in the string. So in the above
example I'd like two matches, cost and tax.

Any ideas?

PS: match(...).captures always, always returns an empty array...
 
J

Joel VanderWerf

Daniel said:
'cost * tax'.match(/([a-z]+)*/).to_a
=> ["cost", "cost"]

Why?

I'm reading it as... Take one or more characters between a and z, store
them into a back reference, then repeat the previous match zero or more
times.

Now, that regexp doesn't do what I want it to do, but what it IS doing
doesn't make sense to me.

What I'd like is to grab all the "words" in the string. So in the above
example I'd like two matches, cost and tax.

Any ideas?

'cost * tax'.scan(/\w+/)
=> ["cost", "tax"]
PS: match(...).captures always, always returns an empty array...

How are you using it?

"foo".match(/(foo)/).captures
=> ["foo"]
'cost * tax'.match(/([a-z]+)*/).captures
=> ["cost"]
 
D

Daniel Waite

Joel said:
What I'd like is to grab all the "words" in the string. So in the above
example I'd like two matches, cost and tax.

Any ideas?

'cost * tax'.scan(/\w+/)
=> ["cost", "tax"]

How do you people do that? The last time I had a regexp question someone
came down from the clouds and handed me something about that short. Why
do I think it's more difficult than it is?

After making the example a little more complex I had to change it
every-so-slightly...

'cost * tax + 0.075'.scan(/[a-z]+/)
=> ["cost", "tax"]

But it's effectively the same. Thank you Joel, you rock!

Is there a book you recommend to learn more about regular expressions?
How did YOU learn them?
PS: match(...).captures always, always returns an empty array...
How are you using it?

"foo".match(/(foo)/).captures
=> ["foo"]
'cost * tax'.match(/([a-z]+)*/).captures
=> ["cost"]

LOL I'm an idiot -- *captures* -- back references, right. Gotcha...
 
S

Stanislav Sedov

'cost * tax'.match(/([a-z]+)*/).to_a
=> ["cost", "cost"]

Why?

Well, the regexp always matches the longest possible string.
What did you wrote is effectively equialent to ([a-z]*).
The single regexp can't match multiple strings, it always matches
one. It can't match the space after the 'cost' either, since this
symbol wasn't included to your regexp.

In case, if you want to match two words, you should write e.g.
([[:alpha:]]+)[[:space:]]+([[:alpha:]]+)
This regexp will match two words separated by a space.
Regexp can't match an undefined number of words, you should know
in advance which number of words you want to match.

For more infor on regexps see e.g. re_format(7).
 
D

Daniel Waite

Stanislav said:
'cost * tax'.match(/([a-z]+)*/).to_a
=> ["cost", "cost"]

Why?

Well, the regexp always matches the longest possible string.
What did you wrote is effectively equialent to ([a-z]*).
The single regexp can't match multiple strings, it always matches
one. It can't match the space after the 'cost' either, since this
symbol wasn't included to your regexp.

In case, if you want to match two words, you should write e.g.
([[:alpha:]]+)[[:space:]]+([[:alpha:]]+)
This regexp will match two words separated by a space.
Regexp can't match an undefined number of words, you should know
in advance which number of words you want to match.

For more infor on regexps see e.g. re_format(7).

Hmm... if what you say is true, why does the second poster's solution
capture multiple words? Wait, I know why. String#scan is different than
string#match. Interesting...

So how does that work if I wanted to match ALL occurrences of \w+
WITHOUT scan?
 
J

Jim Clark

Daniel said:
Is there a book you recommend to learn more about regular expressions?
How did YOU learn them?
"Mastering Regular Expressions" by Jeffrey Friedl. I haven't seen the
third edition to see if there is any Ruby specific examples but even
with all the Perl examples in the first edition, I still use it as a
reference because of the similarities between Perl and Ruby's regular
expressions.

-Jim
 
7

7stud --

Daniel said:
What I'd like is to grab all the "words" in the string.
So how does that work if I wanted to match ALL occurrences
of \w+ WITHOUT scan?

Your using the wrong method. match() only returns the first match:

pattern = /x.x/
str = "xax hello xbx"

puts pattern1.match(str)

--output:--
xax
So how does that work if I wanted to match ALL occurrences
of \w+ WITHOUT scan?

str = " cost * tax"
words = str.split("*").map {|elmt| elmt.strip()}
p words

--output:--
["cost", "tax"]



str = " cost * tax = 123"
words = []

str.split().map do |word|
good_word = true

word.each_byte do |code|
if code < ?a or code > ?z
good_word = false
break
end
end

if good_word
words << word
end
end

p words

--output:--
["cost", "tax"]
 
D

Daniel Waite

7stud said:
str = " cost * tax = 123"
words = []

str.split().map do |word|
good_word = true

word.each_byte do |code|
if code < ?a or code > ?z
good_word = false
break
end
end

if good_word
words << word
end
end

p words

--output:--
["cost", "tax"]

That's clever use of ?a, which I recognize but have never seen anyone
use before. Thanks for the example!

Jim said:
"Mastering Regular Expressions" by Jeffrey Friedl. I haven't seen the
third edition to see if there is any Ruby specific examples but even
with all the Perl examples in the first edition, I still use it as a
reference because of the similarities between Perl and Ruby's regular
expressions.

I shall check that out Jim, thanks much.
 
P

Phrogz

That's clever use of ?a, which I recognize but have never seen anyone
use before. Thanks for the example!

My current favorite use for the ?x syntax is converting single-
character strings representing digits into their integer form:

# Jenny jenny, who can I turn to?
irb(main):006:0> "8675309".each_byte{ |x| p x - ?0 }
8
6
7
5
3
0
9
 
B

Brian Adkins

My current favorite use for the ?x syntax is converting single-
character strings representing digits into their integer form:

Yeah, so you can squeeze Ruby code into small places :)

1.upto(?d){|i|i%3<1&&x=:Fizz;puts i%5<1?"#{x}Buzz":x||i}
 
R

Rick DeNatale

Yeah, so you can squeeze Ruby code into small places :)

1.upto(?d){|i|i%3<1&&x=:Fizz;puts i%5<1?"#{x}Buzz":x||i}

Except under the upcoming revision (1.9) of the (Ruby) Rules of Golf,
the R(uby)&A(ncient) has outlawed that usage, and instituted the
penalty that ?d will no longer be 100, but "d".
 
7

7stud --

Gavin said:
My current favorite use for the ?x syntax is converting single-
character strings representing digits into their integer form:

# Jenny jenny, who can I turn to?
irb(main):006:0> "8675309".each_byte{ |x| p x - ?0 }
8
6
7
5
3
0
9


Perhaps this is clearer:

"8675309".each_byte{|code| puts code.chr}

...although slightly slower.
 
J

James Edward Gray II

Perhaps this is clearer:

"8675309".each_byte{|code| puts code.chr}

...although slightly slower.

Printed content aside, it's not equivalent. The original code is
making Integers, not Strings.

James Edward Gray II
 
B

Brian Adkins

Except under the upcoming revision (1.9) of the (Ruby) Rules of Golf,
the R(uby)&A(ncient) has outlawed that usage, and instituted the
penalty that ?d will no longer be 100, but "d".

Well, then the least they can do is add Integer#to as an alias for
Integer#upto so we can have a net loss of 1 character in the above
code :)
 

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

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top