ASP Concatenate String

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default ASP Concatenate String

    String a=Test
    String b=test@test.com"

    How can I concatenate this to get

    String c ="""Test"" <test@test.com>"

    Raju Guest

  2. Similar Questions and Discussions

    1. Concatenate fields with no values
      I am running CF 5 with SQL Server 2000. I am looking to concatenate a person name, but not all names have a suffix or middle name. Sample SQL:...
    2. Concatenate Fields to >255 chars
      "Peter" <peter@somewhereontheinter.net> wrote in news:cuds3o$b3d$1@forums.macromedia.com: Hi Peter, Are you using cfinsert/cfupdate - or a...
    3. Concatenate pdf files
      antoni_gervais@adobeforums.com wrote: Pdftk is a free command-line tool for combining PDF documents: pdftk 1.pdf 2.pdf 3.pdf cat output 123.pdf...
    4. Way to concatenate SWF?
      I just need to stitch together a few SWF files without editing them. Is there a way to do this without having to get/install flash editing software?
    5. concatenate text fields
      Does anyone know of a workaround to concatenate text fields???? thanks, jr
  3. #2

    Default ASP Concatenate string

    String a=Test
    String b=test@test.com

    How can I concatenate this to get

    String c ="""Test"" <test@test.com>"

    Raju Guest

  4. #3

    Default Re: ASP Concatenate string


    "Raju" <navvyus@yahoo.com> wrote in message
    news:1183681907.279843.258910@g4g2000hsf.googlegro ups.com...
    > String a=Test
    > String b=test@test.com
    >
    > How can I concatenate this to get
    >
    > String c ="""Test"" <test@test.com>"
    >
    It's bad enough that you've posted the same question three times, but
    multi-posting is real annoying. Question answerd in the asp.general group


    Anthony Jones Guest

  5. #4

    Default Re: ASP Concatenate String

    useless answer
    Unregistered 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