View Problem

Remove leading and trailing whitespace from a string

Given the string "  hello    " return the string "hello".
ExpandDiskEdit
csharp
string str = " hello ";
str = str.Trim();
Console.WriteLine(str);
DiskEdit
clojure
(use 'clojure.contrib.str-utils2)
(trim " hello ")
DiskEdit
clojure 1.3
(clojure.string/trim " hello ")
DiskEdit
clojure
(.trim " hello ")

Submit a new solution for csharp or clojure
There are 18 other solutions in additional languages (cpp, erlang, fantom, fsharp ...)