progs/re.rb
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Thu, 14 Nov 2013 20:08:39 +0000
changeset 190 0b63c0edfb09
parent 121 43c116860e47
child 226 e3c454e31224
permissions -rw-r--r--
added new version

# provided by Daniel Baldwin

nums = (1..100)

#iterate through the nums 1-100
nums.each do |i|

	start_time = Time.now
	string = "a" * i

	#create a new regular expression based on current value of i
	re = Regexp.new(/((a?){#{i}})(a{#{i}})/)

        re.match(string)
	#if re.match(string)
	#	puts "matched string  a * #{i} with regex #{re}"
	#else
	#	puts "unmatched string a * #{i} with regex #{re}"
	#end
	
  puts "#{i} %.5f" % (Time.now - start_time)
end