quatation mark in replace function
how can I remove “ double quote from text with replace?
and
there is a way to load image from the web?
6 replies
-
Text := replace(Text, "„", "");
Text := replace(Text, "“", "");
Text := replace(Text, """", "");
Text := replace(Text, "«", "");
Text := replace(Text, "»", ""); -
thats ok, but this doesn't Text := replace(Text, """, "");
-
it has to be:
–––
Text := replace(Text, """", "");–––
Birger
-
this is the line
Content := replace(Content, "<div class="longdesc smartformatted">", "");
doesn't work with \" escape character either
-
try this
---
Text := replace(Text, """", "");
Text := replace(Text, "<div class=longdesc smartformatted>", "")---
or this
---
Text := replace(Text, "<div class=" + """" + "longdesc smartformatted>" + """", "")
---
Leo
-
try this
---
Text := replace(Text, """", "");
Text := replace(Text, "<div class=longdesc smartformatted>", "")---
or this
---
Text := replace(Text, "<div class=" + """" + "longdesc smartformatted>" + """", "")
---
Leo
Content aside
- 6 yrs agoLast active
- 6Replies
- 2931Views