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 6539557
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T10:52:23+00:00 2026-05-25T10:52:23+00:00

I’m working on a project which at the moment is unable to have any

  • 0

I’m working on a project which at the moment is unable to have any 3rd party JS libraries (otherwise this would be a breeze with jQuery). One of the things within this project is form validation. I’ve got that working fairly well except for some minor issues with my regex.

I’m triggering a validation function onchange() of text fields so if you tab out and there’s an error you’ll know immediately. Tab out with good data and you’ll know immediately as well. If the validation fails, I assign an error class to a parent element. This works fine if you only trip the validation once. If you keep failing the test, the error classes build up, for example, if you fail the validation 2x, you’ll end up with:

<p class=" error">

If you fail 3x, you’ll end up with:

<p class=" error error">

If the validation passes, I call the removeClass() function below. Basically, it doesn’t look like I’m getting a global search/replace. I thought for sure that adding the global modifier would take care of the case above, but it does not, it only removes one “error” class.

removeClass: function (el, name) {
    var regex = new RegExp('(^|\\s)' + name + '(\\s|$)', 'gi');
    el.className = el.className.replace(regex, ' ');
}

My regex is just looking for beginning of line or white space followed by “error” followed by white space or end of line. Granted, I admittedly suck at regular expressions 🙂

Anything jump out at you?

  • 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-25T10:52:23+00:00Added an answer on May 25, 2026 at 10:52 am

    It is working globally, but when a match is found, the next attempted match begins in the character following the last character in the previous match, which is the e in the second error instead of the space before it.

    //  v-----v-------first match
       " error error"
    //         ^------continues here, no more matches because 
    //                       there isn't a space before `e`.
    

    To test it, add a second space between the two classes, and it will work.

    //  v-----v-------first match
       " error  error"
    //         ^------continues here, and now it will match 
    

    A fix would be to use \\b instead, which doesn’t match any character, so the next match will start after the last r character in the previous error match.

    new RegExp('\\b' + name + '\\b', 'gi');
    

    As noted by @Joseph, you should change the " " in the .replace() to an empty string "" in order to avoid an accumulation of space characters.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.
I would like to run a str_replace or preg_replace which looks for certain words
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I have an autohotkey script which looks up a word in a bilingual dictionary
This could be a duplicate question, but I have no idea what search terms
I have an array which has BIG numbers and small numbers in it. I
I have a text area in my form which accepts all possible characters from

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.