Man kan också lägga till under String
Examples:
String.int2char(42);
(1) Result: "*"
String.int2hex(42);
(2) Result: "2a"
String.int2roman(42);
(3) Result: "XLII"
String.int2size(4200);
(4) Result: "4.1 kb"
/ Martin Nilsson (hehe Torgny)
Previous text:
2002-12-05 21:32: Subject: CHANGES line of the day
At least I got most of them myself. :-/
o String Added a few new methods: int2char, int2hex, int2roman, int2size, which convert integers into different string representation, and expand_tabs, which converts tabs to spaces.
o String.Elite Contains methods that transfer ordinary readable text into leet-speak. A fairly good argument could be laid out for putting this in Crypto as a one way cipher...
o String.Buffer A buffer used for building strings very fast.
o String.HTML Contains methods that help in generating HTML.
/ Peter Bortas