我尝试使用partition method from the String module对字符串进行分区。但是,这样做的时候:
puts "test".partition("s")
我收到以下错误消息:
Line 1:in `partition': wrong number of arguments (1 for 0) (ArgumentError) from t.rb:1
我相信Ruby会调用partition method from the Enumerable module,而不是我想要的String模块中的那个。
如何让Ruby调用所需的方法?