The length of the matching part

var m = "hello world".search("lo")
assert m.length == 2

Property definitions

core $ Match :: length
	# The length of the matching part
	#
	# ~~~
	# var m = "hello world".search("lo")
	# assert m.length == 2
	# ~~~
	var length: Int
lib/core/text/string_search.nit:255,2--261,16