Visual Basic

Moderators: None (Apply to moderate this forum)
Number of threads: 18013
Number of posts: 55386

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
how can I cut off a part of a string Posted by Matrix.net on 21 Apr 2005 at 4:27 PM
anyone know how can I cut off parts of a string ?

for example ; I get a string value "hello, the day is red" and I want to just keep "hello".




Report
Re: how can I cut off a part of a string Posted by Cory on 22 Apr 2005 at 12:13 AM
: anyone know how can I cut off parts of a string ?
:
: for example ; I get a string value "hello, the day is red" and I want to just keep "hello".
:
:

Dim Newstring, Oldstring As String
Oldstring = "hello, the day is red"
Newstring = left(Oldstring,5)

This Will Only Work If You Know How Many Characters You Want To Splice. Grouped With This Are The Mid() And Right() Functions.

Report
Re: how can I cut off a part of a string Posted by Genjuro on 22 Apr 2005 at 3:06 AM
: : anyone know how can I cut off parts of a string ?
: :
: : for example ; I get a string value "hello, the day is red" and I want to just keep "hello".
: :
: :
:
: Dim Newstring, Oldstring As String
: Oldstring = "hello, the day is red"
: Newstring = left(Oldstring,5)
:
: This Will Only Work If You Know How Many Characters You Want To Splice. Grouped With This Are The Mid() And Right() Functions.

Watch out: this isn't C. This line:

Dim Newstring, Oldstring As String

actually declares a string (Oldstring) and a Variant (NewString). A better (language-wise, at least) declaration would be:

Dim Newstring as String, Oldstring As String

Back on topic, along with Mid(), Left() and Right(), I'd also add to the list of fundamental string functions Instr(), and InStrRev().
Report
Re: how can I cut off a part of a string Posted by melissa_may1 on 22 Apr 2005 at 7:45 PM
: anyone know how can I cut off parts of a string ?
:
: for example ; I get a string value "hello, the day is red" and I want to just keep "hello".


I just have to ask...

Where do you live that has "red days"???


Melissa




 

Recent Jobs