|
-
Apr 29th, 2005, 04:53 PM
#1
Thread Starter
Frenzied Member
Quick String Manipulation Q [resolved, got it :P)
How would this code be made to actually work ?
(CurrSong is a string)
VB Code:
If Left(CurrSong, 9) = "[Opening]" Then CurrSong = Left(CurrSong, Len(CurrSong) - 9)
Thanks in Advance
Last edited by thegreatone; Apr 29th, 2005 at 04:56 PM.
Zeegnahtuer?
-
Apr 29th, 2005, 04:56 PM
#2
Thread Starter
Frenzied Member
Re: Quick String Manipulation Q (easy)
Nvm, i got it, i forgot to subtract the stuff from the correct side :P
VB Code:
If Right(CurrSong, 9) = "[Opening]" Then CurrSong = Right(CurrSong, Len(CurrSong) - 9)
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
|