Results 1 to 12 of 12

Thread: [Resolved][2005] String Manipulation

Threaded View

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Dec 2007
    Location
    Wisconsin, USA
    Posts
    29

    [Resolved][2005] String Manipulation

    I'm currently trying to get a string to be manipulated into this format

    Phone: (123) 456-7890
    Cell: (930) 345-4566
    Fax: (234) 454-4321

    From something a string that would say this
    1234567890
    2343454566
    2344544321

    This is my current code
    Code:
    Return "Phone: " & landLine & ControlChars.CrLf & "Cell: " & cell & ControlChars.CrLf & "Fax: " & fax
    Its Currently returning
    Phone: 1234567890
    Cell: 2343454566
    Fax: 2344544321

    Thanks for any help
    Last edited by BuRdeN; Apr 23rd, 2008 at 12:54 PM.

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