所以我在ruby建立一个团队排名系统。它将根据团队在头对头竞争中的表现对队伍进行排名。道奇3,水手1是我的榜样。我可以分开","但要取出得分,我还会继续分开道奇与3之间的空间吗?然后我需要重新编译字符串。有更快的方法吗?
到目前为止,这是我的代码:
file = File.open($stdin.read)
contents = ""
file.each {|line|
tokens = line.split(",")
code = tokens[0]
description = tokens[1]
# handle spaces
if tokens.count > 2
description = tokens[1] + " " + tokens[2]
end
my_file = File.new("output.txt", "w")
my_file.puts contents
}
答案 0 :(得分:1)
试试这个:
/etc/yum.repos.d