Skip to content

Delete Special Characters in Text

If you want to remove any specific characters in a text, such as removing -*!? characters, you can use below code.

NewText := DelChr(OldText, '=', '-*!?');

If you want to do it the other way around, such as keeping only A-E characters and remove the rest, you can use below code.

NewText := DELCHR(OldText,'=',DELCHR(OldText,'=','ABCDEabcde'));

Continue Reading thatnavguy’s Article on their blog

Private Site

This site is currently private. Log in to WordPress.com to request access.

Blog Syndicated with thatnavguy’s Permission

Leave a Reply