0

We receiving Input data like below “VENKATA,KRISHNA”

I want output like below VENKATA,KRISHNA

Can anyone help me with this

Krishna
  • 25
  • 4

1 Answers1

0

Check out the Ereplace function - it allows to replace certain characters so you could rplace " with '' (empty string).

An alternative is TRIM - you can specify which character the command should trim and also if All occurrences or Both (from both sides of the string) plus more.

MichaelTiefenbacher
  • 3,805
  • 2
  • 11
  • 17