String Manipulation in Visual Basic 2012

In Visual Basic 2012, strings can be manipulated using the & sign and the + sign, both perform the string concatenation which means combining two or more smaller strings into larger strings. For example, we can join “Visual” ,”Basic” and “2012″ into “Visual Basic 2012″ using “Visual”&”Basic” or “Visual “+”Basic”

Read On…………….