0

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

null
    • Leonid_Semik
    • 5 yrs ago
    • Reported - view

    Text := replace(Text, "„", "");
    Text := replace(Text, "“", "");
    Text := replace(Text, """", "");
    Text := replace(Text, "«", "");
    Text := replace(Text, "»", "");

    • telemarket2
    • 5 yrs ago
    • Reported - view

    thats ok, but this doesn't Text := replace(Text, """, "");

    • Birger_H
    • 5 yrs ago
    • Reported - view

    it has to be:

    –––
    Text := replace(Text, """", "");

    –––

    Birger

    • telemarket2
    • 5 yrs ago
    • Reported - view

    this is the line 

    Content := replace(Content, "<div class="longdesc smartformatted">", "");

    doesn't work with \" escape character either

    • Leonid_Semik
    • 5 yrs ago
    • Reported - view

    try this

    ---

    Text := replace(Text, """", "");
    Text := replace(Text, "<div class=longdesc smartformatted>", "")

    ---

    or this

    ---

    Text := replace(Text, "<div class=" + """" + "longdesc smartformatted>" + """", "")

    ---

    Leo

    • Leonid_Semik
    • 5 yrs ago
    • Reported - view

    try this

    ---

    Text := replace(Text, """", "");
    Text := replace(Text, "<div class=longdesc smartformatted>", "")

    ---

    or this

    ---

    Text := replace(Text, "<div class=" + """" + "longdesc smartformatted>" + """", "")

    ---

    Leo

Content aside

  • 5 yrs agoLast active
  • 6Replies
  • 2923Views