Replace funcion

access09

Registered User.
Local time
Yesterday, 18:00
Joined
Apr 14, 2009
Messages
40
How can i use the replace function to replace a number of characters...below is what i have so far:

Expr1: Replace([occupation2],".","")

Above just replace '.' but i want to replace other characters like "`" , "^", "+", and so on.

Does anyone have any ideas??
 
You can also nest 'em:

x = "A.A'A^A+"
?replace(replace(replace(replace(x,".",""),"'",""),"^",""),"+","")
AAAA

hth,
 

Users who are viewing this thread

Back
Top Bottom