Write a Visual Basic statement that will access each character in thestrNumbervariable to determine if the variable contains a comma and then removes any comma that is found.
What will be an ideal response?
For intIndex As Integer = 0 To strBalance.Length - 1
If strNumber.Substring(intIndex, 1) = "," Then
strNumber = strNumber.Remove(intIndex, 1)
End If
Next intIndex
Computer Science & Information Technology
You might also like to view...
?A(n) _____ is a collection of commands that performs an action or returns a value.
A. ?function B. ?argument C. ?entity D. ?pointer
Computer Science & Information Technology
Some menu commands provide the same function as the Zoom tool.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology