Void translate(var String s, Char(Char) rule)
Arguments
s: The string to translaterule: The rule to apply
Usage
Replace characters in a String in place, applying the translation function to each character in turn.
Char rot13(Char c) {
if ((c >= 'A' && c <= 'M') ||
(c >= 'a' && c <= 'm')) {
return Char(c+13);
} else if ((c >= 'N' && c <= 'Z') ||
(c >= 'n' && c <= 'z')) {
return Char(c-13);
} else {
return c;
}
}
Void main() {
str = "Hello World";
translate(str, rot13);
// str = "Uryyb Jbeyq";
}