Skip to content

Instantly share code, notes, and snippets.

@spangenberg
Created October 6, 2014 07:01
Show Gist options
  • Select an option

  • Save spangenberg/ee331c5cb46db9111b3c to your computer and use it in GitHub Desktop.

Select an option

Save spangenberg/ee331c5cb46db9111b3c to your computer and use it in GitHub Desktop.
require "benchmark"
b = Benchmark.realtime do
10_000_000.times.each { "HalloDasIst=EinKeyVonMir".split("=")[1] }
end
puts b
b = Benchmark.realtime do
10_000_000.times.each { "HalloDasIst=EinKeyVonMir"[12..-1] }
end
puts b
4.929568
2.382281
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment