The starting position in the string

var m = "hello world".search("lo")
assert m.from == 3

Property definitions

core $ Match :: from
	# The starting position in the string
	#
	# ~~~
	# var m = "hello world".search("lo")
	# assert m.from == 3
	# ~~~
	var from: Int
lib/core/text/string_search.nit:247,2--253,14