我对一个条件有问题,如果我想在一个区块内使用。更确切地说,我想从一个阵列中获取一个字符串,修改该字符串,如果有特定条件,将其保存回数组。
I have an array called "leuchtturmgesamtheit" which consists of strings. Most of those strings look like this:
ACH-9294110 ACH-92941100 ACH-9294100
ACH-9294110 ACH-92941102
我的目标是合并这两个字符串。 这就是为什么我要重命名字符串, 以便它们有相同的名字。 要这样做, 我想剪切最后一个字符。 在此之后, 我可以在数组上使用 uniq!
这就是我所做的:
leuchtturmgesamtheit.each { |replace|
if replace.count("1234567890")==8
replace=replace[0...-1]
end
}
leuchtturmgesamtheit.uniq!
print leuchtturmgesamtheit
我期待得到:
ACH-9294110 ACH-9294110
但我却得到了同样的两个弦回来。
RubyMine告诉我, 粗体标记的“ 替换” 是任务完成后没有使用的本地变量 。 所以问题似乎是街区内的状态。 我做错了什么?