String manipulation

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mick

    #1

    String manipulation

    Anyone know why the substring() does not work in my VB app??

    Is there something I could use in its place?

    --
    Thanks,

    Mick


  • Veign

    #2
    Re: String manipulation

    Because its not a valid language syntax...Try Instr, Mid, Left, Right.
    Really depends on what SubString does.

    --
    Chris Hanscom - Microsoft MVP (VB)
    Veign's Resource Center

    --

    "Mick" <test@nospam.ch erryhill.ca> wrote in message
    news:6MKOd.2297 76$Np3.9530926@ ursa-nb00s0.nbnet.nb .ca...[color=blue]
    > Anyone know why the substring() does not work in my VB app??
    >
    > Is there something I could use in its place?
    >
    > --
    > Thanks,
    >
    > Mick
    >
    >[/color]


    Comment

    • Spanner

      #3
      Re: String manipulation

      Veign wrote:[color=blue]
      > Because its not a valid language syntax...Try Instr, Mid, Left, Right.
      > Really depends on what SubString does.
      >[/color]
      Also have a look at the Split() function.

      Comment

      Working...