The content of string after the match

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

Property definitions

core $ Match :: text_after
	# The content of `string` after the match
	#
	# ~~~
	# var m = "hello world".search("lo")
	# assert m.text_after == " world"
	# ~~~
	fun text_after: String do return string.substring_from(after)
lib/core/text/string_search.nit:288,2--294,62