string $s = "hello_world";
printnl(string_substr($s, 6, 5));
printnl(string_substr($s, 0, 5));
printnl(string_substr($s, 0, 50));
