Replace funcion (1 Viewer)

access09

Registered User.
Local time
Yesterday, 17:14
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??
 

DALeffler

Registered Perpetrator
Local time
Yesterday, 18:14
Joined
Dec 5, 2000
Messages
263
You can also nest 'em:

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

hth,
 

Users who are viewing this thread

Top Bottom