Created
June 12, 2013 02:40
-
-
Save janetruluck/5762470 to your computer and use it in GitHub Desktop.
Benchmark 100,000 items converting string to array ruby
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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