Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3280558
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T19:43:05+00:00 2026-05-17T19:43:05+00:00

I am trying to remove all spaces from a text field when a form

  • 0

I am trying to remove all spaces from a text field when a form is submitted so that the contents of the post code field match those in a database…

If drSet5c.Tables(0).Rows(0).Item("post_code") = UCase(Replace(tbPostcode.Text, " ","")) Then
    response.write("Postcodes match")
Else
    response.write("Postcodes DON'T match")
End If

So if the postcode in the database is AB12CD and the user types AB1 2CD the space is removed on submitting the form and the match statement shows. This is not working though.

It all works fine if the user does not include the space.

Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T19:43:06+00:00Added an answer on May 17, 2026 at 7:43 pm

    Try breaking it up into its parts so you can evaluate the string properly. Doing all of this on one line is less readable and more prone to error. Also, get away from using the old notation of VB6 with UCase, CStr, Len, etc. They’re still valid within the Microsoft.VisualBasic namespace (and MS assures us that it’s not going anywhere), but you’ll find example code easier to translate if you just familiarize yourself with the .Net object structure.

    ' Get the row string out using ToString to force the typing
    Dim rowPostCode As String = drSet5c.Tables(0).Rows(0).Item("post_code").ToString()
    
    ' Perform the case manipulation and replace function, then assign to new string
    Dim tbPostCodeFormatted As String = tbPostcode.Text.Trim().ToUpper().Replace(" ", "")
    
    ' Perform the string comparison. Because we're ignoring case here, the ToUpper()
    ' used above may not be necessary
    If rowPostCode.Equals(tbPostCodeFormatted, StringComparison.OrdinalIgnoreCase) Then 
        response.write("Postcodes match") 
    Else 
        response.write("Postcodes DON'T match") 
    End If
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was trying to remove all the lines of a file except the last
Because regular expressions scare me, I'm trying to find a way to remove all
I'm trying to add a class to the selected radio input and then remove
Im trying to access a web service from a remote computer. I managed to
I am trying a straightforward remote json call with jquery. I am trying to
I'm trying to connect to a remote database (hosted on Netfirms www.netfirms.ca if anyone
I am trying to connect to a remote MySQL database using Visual C# 2008
I am trying to nail down free space on a remote server by querying
I'm trying to check if a service exists on a remote machine using the
I'm trying to use cygwin sqlplus to connect to a remote oracle installation located

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.