devxlogo

Validate Text Against a List of Values

I often find it necessary to check that a string is valid by ensuring it exists in a list of strings. For instance, you might need to check that a user-entered province/state code exists within a list of valid province/state codes. You can do this quickly without looping through the list each time you need to compare. Suppose you have an array containing all valid province/state codes:

 Private ValidCodes() As String

First, translate this array into a string of separated valid codes:

 Private ValidList As StringPrivate Sub CreateValidList()Dim i As Long, sT As StringFor i = LBound(ValidCodes) To _UBound(ValidCodes)sT = "|" & ValidCodes(i)Next isT = sT & "|"ValidList = sTEnd Sub

I separate the items in the string with vertical bars (“|”) because in this situation, bars don

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Seven Service Boundary Mistakes That Create Technical Debt

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.