String.tr("dataIn","dataOut")

Tinderbox Icon


Operator Type:   Function
Operator Scope of Action:   Item
Operator Purpose:   Data manipulation

$MyString.tr("dataIn","dataOut")

New to v5.7.0 this operator allows simple single character string manipulation. It computes a new string, copying each character of $MyString but converting any characters in dataIn to the corresponding characters in dataOut. For example:

$MyString.tr("a","A") 

returns a copy of MyString in which every "a" is converted to "A".

Backslash characters must be quoted and escaped:

$MyString.tr("c","\\r") 

converts every "c" to a Macintosh newline characters (\r) - note the need in this context for an extra backslash escape (so Tinderbox knows the intended swap value is "\r" and not "r").

Multiple characters can be replaced:

"Hello, world".tr("aeiou","AEIOU") gives "HEllO, wOrld"

Note that in the later example the number of characters in dataIn and dataOUt must match and pairs must list in order, otherwise unmatched characters will as as for the syntax below.

$MyString.tr("dataIn")

If dataOut is omitted or left empty, any matches to dataIn are deleted from the target string.

"Hello, world".tr("aeiou") gives "Hll, wrld"

For further information, see the Mac OS X man page for the UNIX tr command.


Possible relevant notes (via "Similar Notes" feature):

Up: Full Operator List
Previous: String.toNumber  Next: String.uppercase() 

A Tinderbox Reference File : Actions & Rules : Operators : Full Operator List : String.tr("dataIn","dataOut")

Quicklinks: Attributes | Action Codes | Export Codes | Designators | Date Formats | aTbRef Site Map

[Last updated: 16 May 2012, using v5.11.1]


Search:

Google search aTbRef for:  


Creative Commons Licence

aTbRef by Mark Anderson is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.

[See aTbRef CC licence Attribution & Waiver info]

Made with Tinderbox