> with(StringTools):

> Map( Capitalize, "This is a test." );

> Map( LowerCase, %);

> convert("Test string", 'bytes');

[84, 101, 115, 116, 32, 115, 116, 114, 105, 110, 103]

> convert([65,66,67], 'bytes');

> convert("abcdefghijklmnopqrstuvwxyz", 'bytes');

[97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122][97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122]

> convert("ABCDEFGHIJKLMNOPQRSTUVWXYZ", 'bytes');

[65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90]

> convert(" -=!@#$%^&*()_", 'bytes');

[32, 45, 61, 33, 64, 35, 36, 37, 94, 38, 42, 40, 41, 95]

> convert(%,'bytes');

>

>