TRANSLATE
s = TRANSLATE (source, what [, with])
Translates all occurrences of the string what
found in
string source
with the string with
and returns
the new string. If with
is not given, all occurrences of
what
will be removed.
Example 1: Replace
"ab_cd_ef"
s1 = translate(s1, "_", "!")
s2 = print s1 + " -> "; s2 ' Output: ab_cd_ef -> ab!cd!ef
Example 2: Remove
"ab_cd_ef"
s1 = translate(s1, "cd")
s2 = print s1 + " -> "; s2 ' Output: ab_cd_ef -> ab__ef
Code samples using TRANSLATE
3d rotating cube with message.bas
A Rubens, Peter Paul Landscape.bas
autumn scene.bas
base64.bas
btn 21.bas
bulls and cows.bas
graphics sampler.bas
irc-bot.bas
mastermind.bas
pirate.bas
PRINTA_OKOK.bas
scambling text.bas
scampling.bas
shooter.bas
sineballcube.bas
slide sq w mouse.bas
sliding blocks.bas
snow snake.bas
space shooter.bas
square elimination game v3.bas
startrek.bas
startrek.bas
String
ASC
BCS
BIN
CBS
CHOP
CHR
DISCLOSE
ENCLOSE
FORMAT
HEX
INSTR
JOIN
LCASE
LEFT
LEFTOF
LEFTOFLAST
LOWER
LTRIM
MID
OCT
REPLACE
RIGHT
RIGHTOF
RIGHTOFLAST
RINSTR
RTRIM
SINPUT
SPACE
SPC
SPLIT
SPRINT
SQUEEZE
STR
STRING
TRANSLATE
TRIM
UCASE
UPPER
VAL
If there is insufficient information on this page and you wish learn more about TRANSLATE,
please send an email to smallbasic@gmail.com. You can help to improve information about
TRANSLATE by submitting a pull request,
click View Source for details. Note, an offline language reference text file is also available - see the Download section.