devxlogo

Numeric Conversion of Strings

Numeric Conversion of Strings

When dealing with numerics and strings, be advised of a couple “gotchas.” The Val() function isn’t internationally aware and will cause problems if you have users overseas. But you can’t just blindly switch to CLng, CInt, and so on, which are internationally aware. These functions don’t support an empty string (vbNullString or “”) or strings that fail the IsNumeric test and will raise an error if used as such. Consider wrapping your own function around these calls to check for an empty text string before converting:

 Public Function MyCInt(IntValue as Variant) as Integer	If IsNumeric(IntValue) Then		MyCInt = CInt(IntValue)	Else		MyCInt = 0	End IfEnd Function
See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist