Parenthesized subexpressions in this match

var re = "c (d e+) f".to_re
var match = "a b c d eee f g".search(re)
assert match.subs.length == 1
assert match.subs.first.to_s == "d eee"

Property definitions

core :: re $ Match :: subs
	# Parenthesized subexpressions in this match
	#
	# ~~~
	# var re = "c (d e+) f".to_re
	# var match = "a b c d eee f g".search(re)
	# assert match.subs.length == 1
	# assert match.subs.first.to_s == "d eee"
	# ~~~
	var subs = new Array[nullable Match] is lazy
lib/core/re.nit:482,2--490,45