ref: f263a4c9f2a8e254bacecfb2c5f48535c24e2c0e
dir: /test/strstrip.myr/
use std const main = { std.put("\"%s\"\n", std.strstrip(" abc ")) std.put("\"%s\"\n", std.strfstrip(" abc ")) std.put("\"%s\"\n", std.strrstrip(" abc ")) std.put("--\n") std.put("\"%s\"\n", std.strstrip(" 世界 ")) std.put("\"%s\"\n", std.strfstrip(" 世界 ")) std.put("\"%s\"\n", std.strrstrip(" 世界 ")) std.put("--\n") std.put("\"%s\"\n", std.strstrip(" ")) std.put("\"%s\"\n", std.strfstrip(" ")) std.put("\"%s\"\n", std.strrstrip(" ")) std.put("--\n") std.put("\"%s\"\n", std.strstrip("")) std.put("\"%s\"\n", std.strfstrip("")) std.put("\"%s\"\n", std.strrstrip("")) }