vote up 4 vote down star

In Ruby we have the 'bang' method capitalize! which has the strange behavior of returning a nil if no changes to the string were made.

That means I can't chain this commands with other since it effectively destroys the chain if it returns nil.

What im trying to do is something like this:

fname =  fullname[0...fullname.index(' ')].capitalize!

which extracts the first name from a string and should capitalize it as well. But if it is already capitalized the string stored in fname is nil.

Of courses I can add another statement but was wondering if there is a way to do this "without breaking the chain".

flag

2 Answers

vote up 9 vote down check

Use .capitalize (without the bang) -- unless you actually need it to change the source.

link|flag
omg... i cant believe i didn't realize this myself :( tnx dude – Roman M Nov 19 '08 at 23:54
Very glad to hear it helped. :) – HanClinto Nov 20 '08 at 0:00
vote up 4 vote down

Since your statement doesn't change the value of fullname, just do:

fname =  fullname[0...fullname.index(' ')].capitalize

Which doesn't return nil if no change is made.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.