Results 1 to 1 of 1
  1. #1
    jstyler
    jstyler is offline
    New member
    Join Date
    2013 Jul
    Posts
    5
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Cool [BEGINNER] How to split things/strings in VB.net

    Hey,

    i would like to show you guys how to split strings or codes you need.

    First of all:

    PHP Code:
    Dim text as String "test@google.de" 
    We are defining a String, that we want to Split.

    Second Step:
    PHP Code:
    Dim text as String "test@google.de"
    Dim text1 as String
    Dim text2 
    As String
    text1 
    text.split("@")(0' here we are defining the first splitpart
    text2 = text.split("@")(1) ' 
    and here the second 
    Define a first and a second part of the string,
    and then just split the text to text1 and text2.

    Just two easy steps and you will get it.

    Have fun,
    JStyler.

Similar Threads

  1. [C++] Easiest way to split a string
    By pasmpasm in forum C/C++
    Replies: 1
    Last Post: 2014-04-22, 07:18 AM
  2. [Help] beginner, more willing
    By PAFUTA in forum General Game Research
    Replies: 1
    Last Post: 2012-09-05, 03:49 AM
  3. Beginner
    By thiago250 in forum Introduction / Say 'Hello'
    Replies: 2
    Last Post: 2012-04-23, 09:15 PM
  4. [Help] OllyDBG Beginner
    By rhu10 in forum Aika Online
    Replies: 6
    Last Post: 2011-09-05, 02:49 PM
  5. Beginner question
    By iDent1ty in forum General Game Research
    Replies: 5
    Last Post: 2010-11-16, 01:51 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •