.Assign activity replace string " into blank space
I need to replace any double quote in the string into blank space. I try to use Assign activity. In the express editor, I used the following expression:
fldTextvalue.Replace("""," ")
But I am getting this type of error: compiler error. string contains must end with the double quote.
Any idea?
0
-
Easy one! You've just mishandled the first argument and the compiler is confused. Try fldTextvalue.Replace(""""," ")orfldTextvalue.Replace(ControlChars.DblQuote, " ")0 -
Thanks Zack for your quick answer. 0
Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.
Kommentare
2 Kommentare