AuthorMessage
dzadzuks
Ametuar
Posts: 135

i think u know why im here
 $testing hereGoesKindOfStuff$VabigateDDck DDckName|
i would like to split "DDckName" from that line  :?
can help?  8)
bluebear
n00b
Posts: 32

Quoted from dzadzuks
i think u know why im here
 $testing hereGoesKindOfStuff$VabigateDDck DDckName|
i would like to split "DDckName" from that line  :?
can help?  8)

You could have use google to get help on this. But here you go:
Code:

    Dim s As String
    s = "$testing hereGoesKindOfStuff$VabigateDDck DDckName|"
    s = Right(s, (Len(s) - InStrRev(s, " ")))
    s = Replace(s, "|", "")