采用指数方法,我试图发现,如果某一变量存在价值,如果该变量确实存在,那么就会尝试另一个变数;像以下第3行:
a = [ "a", "b", "c" ]
a.index("b") #=> 1
a.index("z" or "y" or "x" or "b") #=> 1
意思是,如果阵列中找不到“z”,那么就会尝试“y”;如果找不到,则尝试X;如果找不到X,则会尝试b。
我如何正确这样做?
采用指数方法,我试图发现,如果某一变量存在价值,如果该变量确实存在,那么就会尝试另一个变数;像以下第3行:
a = [ "a", "b", "c" ]
a.index("b") #=> 1
a.index("z" or "y" or "x" or "b") #=> 1
意思是,如果阵列中找不到“z”,那么就会尝试“y”;如果找不到,则尝试X;如果找不到X,则会尝试b。
我如何正确这样做?
TIMTOWTDI。 但我倾向于使用Array#inject。
%w(x y z b).inject(nil) { |i, e| i or a.index(e) } #=> 1
这样做还有另一种方式,更类似于你的假编码。
class String
def | other
->(e) { self==e || other==e }
end
end
class Proc
def | other
->(e) { self.call(e) || other==e }
end
end
a.index(&( x | y | z | b )) #=> 1
取决于您的最终目标。 如果你只想看到<条码>a条码>有<条码>z、<条码>y条码>、<条码>x条码>或<条码><<><><>><>>><>>>>>>>,你可以做到:
(a & %w{z y x b}).length > 0 # gives true if a contains z, y, x and/or b.
我们看到,如果存在一个<>>交叉点<>,其中含有一些与一套预期数量相同的要素,那么就能够检测到是否有任何要素。
The project I m doing is written in Java and parsers source code files. (Java src up to now). Now I d like to enable parsing Ruby code as well. Therefore I am looking for a parser in Java that parses ...
collection_select and select Rails helpers: Which one should I use? I can t see a difference in both ways. Both helpers take a collection and generates options tags inside a select tag. Is there a ...
All of the following API do the same thing: open a file and call a block for each line. Is there any preference we should use one than another? File.open("file").each_line {|line| puts line} open("...
I ve installed RubyCAS-Client version 2.1.0 as a plugin within a rails app. It s working, but I d like to remove the ?ticket= in the url. Is this possible?
Here s the string: 04046955104021109 I need it to be formatted like so: 040469551-0402-1109 What s the shortest/most efficient way to do that with ruby?
I m building an xml document from a hash. The xml attributes need to be in order. How can this be accomplished? hash.to_xml
Can sources for discrete ruby extension modules live in the same directory, controlled by the same extconf.rb script? Background: I ve a project with two extension modules, foo.so and bar.so which ...
guys which text editor is good for Rubyonrails? i m using Windows and i was using E-Texteditor but its not free n its expired now can anyone plese tell me any free texteditor? n which one is best an ...