diff --git a/tutorial/tutorial.wmml b/tutorial/tutorial.wmml index 5586c5bfd963de265315fc8b0f7188f1979fbd9c..93f5a62ed6e2960d1eeea5043c86eba71b3fe71b 100644 --- a/tutorial/tutorial.wmml +++ b/tutorial/tutorial.wmml @@ -6137,6 +6137,26 @@ Returns the width in bits (8, 16 or 32) of the widest character in <i>s</i>. +<function name=String.trim_whites title="trim spaces and tabs from a string"> +<man_syntax> +string trim_whites(string s); +</man_syntax> +<man_description> +Trim leading and trailing spaces and tabs from the string <i>s</i>. +</man_description> + + + +<function name=String.trim_all_whites title="trim all white spaces from a string"> +<man_syntax> +string trim_all_whites(string s); +</man_syntax> +<man_description> +Trim leading and trailing white space characters (" \t\r\n") from the string <i>s</i>. +</man_description> + + + </module> </section>