AlexKrat
June 28th, 2001, 09:04 AM
Is there a specific VB function that removes white chars (not blanks) from the begining and the end of a string?
Thank you.
Thank you.
|
Click to See Complete Forum and Search --> : White Chars AlexKrat June 28th, 2001, 09:04 AM Is there a specific VB function that removes white chars (not blanks) from the begining and the end of a string? Thank you. Kdev June 28th, 2001, 09:10 AM trim(" test ") 'will trim off spaces but as you said you wanted white characters not blanks, I am assuming that this means the character is possibly from the extended ascii set and is showing up as a white block. If this is the case and you only want the regular ascii set, just write a function to remove all characters that are not in this set (I'm not sure of the range of normal ascii characters I would have to look up my chart) -K codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |