a simple chars questions

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default a simple chars questions

    Sorry, must be a very simple question, but how can i deal whit a string full of double quote ( " , char 34, quotation mark) ?
    Thanks in advance

    iperzazie
    iperzazie Guest

  2. Similar Questions and Discussions

    1. First 3D game, some simple questions....
      Hi guys, This is my first post on these forums, so i hope you can help. I'm sorry for the novel sized post, but i really really could do with...
    2. Simple Questions
      I'm a newbie, and just moved to .NET programming, got confused with how datagrid works. Let say I have datagrid with 3 columns: ID Name Price...
    3. MIME::Lite won't send simple email with "foreign" chars
      In article <mbudash-43596D.19594715082003@typhoon.sonic.net>, Michael Budash <mbudash@sonic.net> wrote: nevermind - goddam spamassassin was...
    4. Beginner - two simple questions please?
      Hello, This is my first post so hello to everyone. I have two questions that I have been struggling with. I am using release 2.5.1 1. I...
    5. Simple Newbie Questions
      Hello, all... I'm trying to get started with Informix under Linux (RedHat 7.3, if it matters). I've got lots of experience with other database...
  3. #2

    Default Re: a simple chars questions

    iperzazie wrote:
    > Sorry, must be a very simple question, but how can i deal whit a string full of double quote ( " , char 34, quotation mark) ?
    > Thanks in advance
    >

    'deal whit a string full of double quote'?? you might need to be a bit
    more specific, not to mention grammatical.

    --
    MOLOKO
    ------------------------------------------------
    ::remove _underwear_ to reply::
    'God saves but Buddha makes incremental backups'
    ------------------------------------------------
    GCM/CS/IT/MC d-- S++:- a- C++ U--- P+ L++ !E W+++$ N++ O? K+ w+++$ !O M+
    VMS? PS+++ PE- Y PGP+ t+ 5-- X-- R* tv++ b++++ DI++++ D+ G e h-- r+ y++
    see [url]www.geekcode.com[/url] to translate the above!
    MOLOKO Guest

  4. #3

    Default Re: a simple chars questions

    You need to use the "\" before the double quote. Ex:
    textquote = "Here \"double quotes\" won't break my string";

    Matheus
    // macromedia.general.brazil

    "iperzazie" <webforumsuser@macromedia.com> escreveu na mensagem
    news:c21sdn$sro$1@forums.macromedia.com...
    > Sorry, must be a very simple question, but how can i deal whit a string
    full of double quote ( " , char 34, quotation mark) ?
    > Thanks in advance
    >
    > iperzazie

    Matheus Guest

  5. #4

    Default Re: a simple chars questions

    Thanks a lot, Matheus, and are you so kind to tell me how can I put same
    RETURN char inside a string ?

    Thanks in advance again

    iperzazie

    "Matheus" <matheus@mway.com.br> ha scritto nel messaggio
    news:c21vom$4q4$1@forums.macromedia.com...
    > You need to use the "\" before the double quote. Ex:
    > textquote = "Here \"double quotes\" won't break my string";
    >
    > Matheus
    > // macromedia.general.brazil
    >
    > "iperzazie" <webforumsuser@macromedia.com> escreveu na mensagem
    > news:c21sdn$sro$1@forums.macromedia.com...
    > > Sorry, must be a very simple question, but how can i deal whit a string
    > full of double quote ( " , char 34, quotation mark) ?
    > > Thanks in advance
    > >
    > > iperzazie
    >
    >

    Andy Guest

  6. #5

    Default Re: a simple chars questions

    HTML:
    textquote = "Here \"double quotes\" won't break my string<br>";

    Not HTML:
    textquote = "Here \"double quotes\" won't break my string\n";

    Matheus
    // macromedia.general.brazil



    "Andy" <mandelli@dada.it> escreveu na mensagem
    news:c233l6$srq$1@forums.macromedia.com...
    > Thanks a lot, Matheus, and are you so kind to tell me how can I put same
    > RETURN char inside a string ?
    >
    > Thanks in advance again
    >
    > iperzazie
    >
    > "Matheus" <matheus@mway.com.br> ha scritto nel messaggio
    > news:c21vom$4q4$1@forums.macromedia.com...
    > > You need to use the "\" before the double quote. Ex:
    > > textquote = "Here \"double quotes\" won't break my string";
    > >
    > > Matheus
    > > // macromedia.general.brazil
    > >
    > > "iperzazie" <webforumsuser@macromedia.com> escreveu na mensagem
    > > news:c21sdn$sro$1@forums.macromedia.com...
    > > > Sorry, must be a very simple question, but how can i deal whit a
    string
    > > full of double quote ( " , char 34, quotation mark) ?
    > > > Thanks in advance
    > > >
    > > > iperzazie
    > >
    > >
    >
    >

    Matheus Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139