A number that a user inputs is put into an SQL statement to update a database. However, if the user uses commas (e.g. 34,592), the syntax of the SQL statement becomes incorrect.
How do I remove the commas? Something like:
for x = 1 to len(number)
<code>
next
Am I on the right track?
How do I remove the commas? Something like:
for x = 1 to len(number)
<code>
next
Am I on the right track?