Syntax:
$[t,input,output,string]
In this transformation, NMAKE32 will examine the contents of string and translate all occurrences of the characters in input to the corresponding characters in output.
If output is null, all characters in input are removed from string. If output is shorter than input, the characters of output are reused.
Examples:
The following transformations:
$[t,/\,\/,d:\make\makemac.c] $[t,13579,*,1234567890] $[t,13579,,1234567890]
return
d:/make/makemac.c *2*4*6*8*0 24680
The input and output strings can be enclosed in quotes and, if so, can contain special characters such as spaces, commas, and escape sequences as in the separate transformations ($[s,...]).