RosettaCodeData/Task/Strip-whitespace-from-a-string-Top-and-tail/00DESCRIPTION
2016-12-05 22:15:40 +01:00

12 lines
516 B
Text

;Task:
Demonstrate how to strip leading and trailing whitespace from a string.
The solution should demonstrate how to achieve the following three results:
* String with leading whitespace removed
* String with trailing whitespace removed
* String with both leading and trailing whitespace removed
<br>
For the purposes of this task whitespace includes non printable characters such as the space character, the tab character, and other such characters that have no corresponding graphical representation.
<br><br>