Is there and way to write code like this in a way that makes what it does clearer?
a = (a.split(" ")[1..-1]).join(" ")
That deletes the first word of a sentence but the code doesn't look expressive at all.
|
Is there and way to write code like this in a way that makes what it does clearer?
That deletes the first word of a sentence but the code doesn't look expressive at all. | |||
|
feedback
|
Edited to add:
| |||||||
|
feedback
|
|
for somebody who is used to reading rexep this is pretty clean:
ymmv | |||
|
feedback
|
|
code
explanation
On second thought, I'm not sure if it's more transparent to someone who is not familiar with ruby, per se. But anyone who has worked with Ruby strings for a little bit will understand what's going on. And it's a lot more clean than the original version. UPDATEAs per just-my-correct-opinion's answer (which you all should vote up instead of mine), if you are running Ruby 1.9.1 (which you should be, anyway) or Ruby 1.8.7, you can do:
| ||||
feedback
|
|
maybe making the process explicit will help
| |||
feedback
|
|
And if you were using this throughout some code you might want to create the methods in String and Array to make your code readable. (works in 1.8.6 too)
| |||
|
feedback
|
|
Somethink like following
No check though | |||||
feedback
|