Skip to content
Home > Programming > How To Remove " ?

How To Remove " ?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #189547
    Johnny5
    Member

    is anyone know the trick to remove the double quote? kekeke

    #189550
    Admin
    Administrator

    @Johnny5 wrote:

    is anyone know the trick to remove the double quote? kekeke

    please explain more about what your talking about.

    #189549
    Johnny5
    Member

    hi Syxx,

    is like when get text from paltalk
    ex:
    MyNick: the string with ” quote

    so, is their the trick to remove the quotation?

    #189548
    DeMo
    Member

    Im guessing you mean vb so


    if instr(data, """") then
    data = replace(data, """", "")
    end if

    with the quote on vb you do 2 of them to be one as a string
    like this


    string = "Then John said ""Hello Bob, How are you?"""

    Thats going to come out like
    Then John said “Hello Bob, How are you?”

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.