C composti New Member Jun 21, 2006 #1 Hello, I want to replace the charakter '*;*' in a database field called "Artikel". Example: Field "Artikel" contains the expression "House ; with ; white windows" and I want to change this to "House x with x white windows" Is there a solution for this question?
Hello, I want to replace the charakter '*;*' in a database field called "Artikel". Example: Field "Artikel" contains the expression "House ; with ; white windows" and I want to change this to "House x with x white windows" Is there a solution for this question?
B bulklodd Member Jun 21, 2006 #2 Code: FOR EACH <tablename> TRANSACTION: <tablename>.Artikel = REPLACE(<tablename>.Artikel,";","x"). END.
Code: FOR EACH <tablename> TRANSACTION: <tablename>.Artikel = REPLACE(<tablename>.Artikel,";","x"). END.
cmorgan New Member Jun 21, 2006 #4 If you want to replace multiple characters with different values, you might also want to take a look at the SUBSTITUTE function.
If you want to replace multiple characters with different values, you might also want to take a look at the SUBSTITUTE function.