Tintware Documentation : Tint Programming Language : Tint Reference : Value Primitives : tint.restSyntax#(tint.rest,%s,%match) #(tint.rest,%s,%match,%retain) %s is a value to be searched for %match. If %match is found in %s, then everything after %match in %s will be returned, otherwise, nothing will be returned. If %retain is specified, then the code or data attribute in %s will be carried into the result. Otherwise, the result is all data. Examples#(tint.rest,abcdef,c) def #(tint.rest,abcabc,c) abc #(tint.rest,abcdef,g) #(tint.rest,abcdef,d,y) ef |