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

    Removing a random charachter from a string.

    Can anyone tell me how to remove a random characher from a string? Please help. [email protected]


  2. #2
    Guest

    Re: Removing a random charachter from a string.

    You can use Mid() function.
    For example you want to remove 1st "T" from "BUTTON":
    Result = Mid ("BUTTON", 1, 2) & Mid ("BUTTON", 4, Len("BUTTON"))
    In case you need help - [email protected] though I'm not much of a pro myself.


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