How to send a string with another string inside it?


Closed Thread
Results 1 to 3 of 3
  1. #1

    Default How to send a string with another string inside it?

    I need a little help to send a string which has another string inside it:

    Example :
    HSEROUT ["She said "Hello""]

    I have tried many ways to do it but no luck.
    ___________________
    WHY things get boring when they work just fine?

  2. #2
    Join Date
    Oct 2005
    Location
    Sweden
    Posts
    3,521


    Did you find this post helpful? Yes | No

    Default Re: How to send a string with another string inside it?

    Hi,
    Perhaps something like this:
    Code:
    HSEROUT ["She said", 34, "Hello", 34]
    34 is the ASCII code for " so the resulting should string should be what you want.

    /Henrik.

  3. #3


    Did you find this post helpful? Yes | No

    Default Re: How to send a string with another string inside it?

    Quote Originally Posted by HenrikOlsson View Post
    Hi,
    Perhaps something like this:
    Code:
    HSEROUT ["She said", 34, "Hello", 34]
    34 is the ASCII code for " so the resulting should string should be what you want.

    /Henrik.
    Thanks. Problem solved
    ___________________
    WHY things get boring when they work just fine?

Members who have read this thread : 1

You do not have permission to view the list of names.

Posting Permissions

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