|
-
Aug 25th, 2000, 03:43 PM
#1
Thread Starter
Frenzied Member
how do I trim the first character from the left?
NXSupport - Your one-stop source for computer help
-
Aug 25th, 2000, 03:44 PM
#2
Fanatic Member
Do you mean removing the first character from the left?
-
Aug 25th, 2000, 03:46 PM
#3
Thread Starter
Frenzied Member
NXSupport - Your one-stop source for computer help
-
Aug 25th, 2000, 03:47 PM
#4
Code:
Text1.Text = Right(Text1.Text, Len(Text1.Text) - 1)
-
Aug 25th, 2000, 03:47 PM
#5
Fanatic Member
Code:
Dim Text As String
Text = "Hello"
Text = Right(Text,Len(Text)-1)
Debug.Print Text
Will display "ello" in the debug window.
-
Aug 25th, 2000, 03:48 PM
#6
Fanatic Member
Sorry Dennis, I didn't read your post.
-
Aug 25th, 2000, 03:48 PM
#7
Thread Starter
Frenzied Member
NXSupport - Your one-stop source for computer help
-
Aug 25th, 2000, 07:56 PM
#8
Member
text = mid(text,2) will remove the first char from the left
-
Aug 25th, 2000, 07:59 PM
#9
Thread Starter
Frenzied Member
NXSupport - Your one-stop source for computer help
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|