最简单,最快的方法是从字符串中获取所有整数。
str = 'abc123def456'
str.delete("^0-9")
=> "123456"
将长字符串中的基准与此处提供的其他一些解决方案进行比较,我们可以看到这快了几个数量级:
require 'benchmark'
@string = [*'a'..'z'].concat([*1..10_000].map(&:to_s)).shuffle.join
Benchmark.bm(10) do |x|
x.report(:each_char) do
@string.each_char{ |c| @string.delete!(c) if c.ord<48 or c.ord>57 }
end
x.report(:match) do |x|
/\d+/.match(@string).to_s
end
x.report(:map) do |x|
@string.split.map {|x| x[/\d+/]}
end
x.report(:gsub) do |x|
@string.gsub(/\D/, '')
end
x.report(:delete) do
@string.delete("^0-9")
end
end
user system total real
each_char 0.020000 0.020000 0.040000 ( 0.037325)
match 0.000000 0.000000 0.000000 ( 0.001379)
map 0.000000 0.000000 0.000000 ( 0.001414)
gsub 0.000000 0.000000 0.000000 ( 0.000582)
delete 0.000000 0.000000 0.000000 ( 0.000060)
map
应该如何理解它的语义?我了解,collect
但是我总是很难理解地图。