CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: String Question

  1. #1
    Join Date
    Jul 1999
    Location
    Israel
    Posts
    140

    String Question

    newbie question:
    How can i extract the the first two letters in a string?


  2. #2
    Join Date
    May 1999
    Location
    Omika, Japan
    Posts
    729

    Re: String Question

    with Left$(string,2)

    RK

  3. #3
    Join Date
    Oct 1999
    Location
    germany
    Posts
    8

    Re: String Question


    Dim text, text2 as string
    ...


    text2 = Left(text, 2)







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

Featured