Results 1 to 11 of 11

Thread: [RESOLVED] Parse a string in a special manner

Threaded View

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Apr 2004
    Posts
    113

    [RESOLVED] Parse a string in a special manner

    Hello,

    I would like to pasre this string in a special manner:

    dddd, dd' de 'MMMM' de 'yyyy

    The result I get by using the split function

    VB Code:
    1. dim d() as string
    2.  
    3. d = split("dddd, dd' de 'MMMM' de 'yyyy","'")

    is this

    dddd, dd
    de
    MMMM
    de
    yyyy

    However what I want is this:

    dddd, dd
    ' de '
    MMMM
    ' de '
    yyyy

    Anybody have any ideas?
    Last edited by rami.haddad; Aug 25th, 2006 at 07:04 PM. Reason: Resolved

Posting Permissions

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



Click Here to Expand Forum to Full Width