devxlogo

The Mid Statement and Function

The Mid Statement and Function

You’re probably familiar with the Mid function, which returnsa substring of a specified number of characters from its stringargument. But are you aware that Mid can also be used to replacecharacters in the middle of a string? The Mid statement is a bitof an oddity in VB because it alters one of its arguments, butthis saves a lot of string concatenation code:

 Dim Str1 As StringStr1 = "SOME STRING"If Mid(Str1, 2, 1) = "O" _        Then Mid(Str1, _        2, 1) = "A"MsgBox Str1
See also  Get the Most Out of Virtual Credit Cards For Business
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