I have tried to partition a string using the partition method from the String module. However, when doing so:

puts "test".partition("s")

I get the following error message:

Line 1:in `partition': wrong number of arguments (1 for 0) (ArgumentError) from t.rb:1

I believe that Ruby calls the partition method from the Enumerable module, instead of the one from the String module as I wanted.

How can I get Ruby to call the desired method?

link|improve this question
Which version/platform of Ruby are you using? – Andy Waite Jun 29 '11 at 9:38
Can you put the output of the following in irb: >> RUBY_VERSION >> "test".partition("s") If you're using Ruby 1.8.6, String#partition doesn't do what you think – injekt Jun 29 '11 at 9:40
I use ruby 1.8.4 (2005-12-24) [i686-linux] – Jan-Willem Jun 29 '11 at 9:43
6  
@Jan that's why it's not working, you're viewing documentation for 1.8.7 or 1.9.2. You're using an ancient version of Ruby. I recommend upgrading to either 1.8.7 or 1.9.2 – injekt Jun 29 '11 at 9:43
irb(main):001:0> RUBY_VERSION => "1.8.4" irb(main):002:0> "test".partition("s") ArgumentError: wrong number of arguments (1 for 0) from (irb):2:in `partition' from (irb):2 – Jan-Willem Jun 29 '11 at 9:46
show 3 more comments
feedback

1 Answer

up vote 1 down vote accepted

As injekt has pointed out, 1.8.4 is too old. APIdock shows that String#partition only appears in 1.8.7. Upgrade.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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