' Increment the numeric right-most portion of a string' Example: MessageBox.Show(IncrementString("test219")) ' => 220Function IncrementString(ByVal text As String) As String Dim index As Integer Dim i As Integer For i = text.Length - 1 To 0 Step -1 Select Case text.Substring(i, 1) Case "0" To "9" Case Else index = i Exit For End Select Next If index = text.Length - 1 Then Return text & "1" Else Dim value As Integer = Integer.Parse(text.Substring(index + 1)) + 1 Return text.Substring(0, index) & value.ToString() End IfEnd Function


GM Creates Open Source uProtocol and Invites Automakers to Adopt It: Revolutionizing Automotive Software Development.
General Motors (GM) recently announced its entry into the Eclipse Foundation. The Eclipse Foundation is a prominent open-source software foundation. In addition, GMC announced its contribution of “uProtocol” to facilitate