2
3/29/2014 Visual Basic 2008/2010 Tutorials: Insert a string http://www.visual-basic-tutorials.com/Tutorials/Strings/Code3.htm 1/2 Visual Basic 2008 / 2010 Tutorials www.reflectionforbrain.com Back | Index Insert a string Dim FirstName As String = "Dominic" Dim LastName As String = "Alphonso" Dim FullName As String Dim MiddleName As String = "Eric" FullName = "My name is " & FirstName & " " & " " & LastName FullName = FullName.Insert(19, MiddleName) MsgBox(FullName) Combining 2 or more strings Insert a string Remove a string Retrieve a string Create a repeated string Change the case of all characters in a string Add a REST API to any DB dreamfactory.com Free open source backend platform REST and JSON for mobile app dev

Insert a String

Embed Size (px)

Citation preview

3/29/2014 Visual Basic 2008/2010 Tutorials: Insert a stringhttp://www.visual-basic-tutorials.com/Tutorials/Strings/Code3.htm 1/2Visual Basic 2008 / 2010 Tutorialswww.reflectionforbrain.com

Back | IndexInsert a string Dim FirstName As String = "Dominic" Dim LastName As String = "Alphonso" Dim FullName As String Dim MiddleName As String = "Eric" FullName = "My name is " & FirstName & " " & " " &LastName FullName = FullName.Insert(19, MiddleName) MsgBox(FullName)

Combining 2 or more stringsInsert a stringRemove a stringRetrieve a stringCreate a repeated stringChange the case of all characters in a stringAdd a REST API to any DBdreamfactory.comFree open source backend platformREST and JSON for mobile app dev3/29/2014 Visual Basic 2008/2010 Tutorials: Insert a stringhttp://www.visual-basic-tutorials.com/Tutorials/Strings/Code3.htm 2/2Compare two strings for character caseCompare two stringsCheck each character in a stringCheck if string entered is Digit ( number from 0 - 9)Check if string entered is Number ( hexadecimal from 0 - F)Check if string entered is Letter ( A - Z)Methods to retrieve info about a characterRetrieve a list of the words in a textboxFunction to count how many times a string occursReverse a StringValidate e-mail addressValidate a phone number