가장 간단하고 빠른 방법은 문자열에서 모든 정수를 가져 오는 것입니다.
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
하지만지도를 이해하는 데 항상 어려움이있었습니다.