Skip to content

Instantly share code, notes, and snippets.

@janetruluck
Created June 12, 2013 02:40
Show Gist options
  • Save janetruluck/5762470 to your computer and use it in GitHub Desktop.
Save janetruluck/5762470 to your computer and use it in GitHub Desktop.
Benchmark 100,000 items converting string to array ruby
require "benchmark"
puts Benchmark.measure {
100000.times do
"[1,2,3,4]"[1..-2].split(",")
end
}
puts Benchmark.measure {
100000.times do
"[1,2,3,4]".gsub("[", "").gsub("", "]").split(",")
end
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment