


Drop the first character of a string:
eval: string::extract ("fubar", 1, NULL);
"ubar"
Another way:
eval: regex::find_first_group 1 ./^.(.*)$/ "fubar";
"ubar"
Drop the first two characters of a string:
eval: string::extract ("fubar", 2, NULL);
"bar"
Another way:
eval: regex::find_first_group 1 ./^..(.*)$/ "fubar"; "bar"


