Thread: String help

  1. #1
    Registered User
    Join Date
    Apr 2002
    Posts
    77

    String help

    Is there any function that will remove a Space after the string like
    "Chris " to "Chris" without the space after the word???
    is there any function that can do this ?

  2. #2
    It's full of stars adrianxw's Avatar
    Join Date
    Aug 2001
    Posts
    4,829
    I'm not aware of an standard function for that. Write one as an exercise.
    Wave upon wave of demented avengers march cheerfully out of obscurity unto the dream.

  3. #3
    Registered User Dual-Catfish's Avatar
    Join Date
    Sep 2001
    Posts
    802
    The CString class can do this for you...

    CString Catfish;
    Catfish = "Chris ";
    Catfish.TrimRight();

  4. #4
    Registered User
    Join Date
    Apr 2002
    Posts
    77
    Thanks
    it really help mi alot
    Last edited by monkeymon; 04-10-2002 at 04:35 AM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. compare structures
    By lazyme in forum C++ Programming
    Replies: 15
    Last Post: 05-28-2009, 02:40 AM
  2. OOP Question DB Access Wrapper Classes
    By digioz in forum C# Programming
    Replies: 2
    Last Post: 09-07-2008, 04:30 PM
  3. Message class ** Need help befor 12am tonight**
    By TransformedBG in forum C++ Programming
    Replies: 1
    Last Post: 11-29-2006, 11:03 PM
  4. Classes inheretance problem...
    By NANO in forum C++ Programming
    Replies: 12
    Last Post: 12-09-2002, 03:23 PM
  5. Warnings, warnings, warnings?
    By spentdome in forum C Programming
    Replies: 25
    Last Post: 05-27-2002, 06:49 PM