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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:18:40+00:00 2026-05-26T05:18:40+00:00

I am trying to build a regex function that will remove any non alpha

  • 0

I am trying to build a regex function that will remove any non alpha numeric characters and remove all duplicate characters e.g. this : aabcd*def%gGGhhhijkklmnoP\1223 would become this : abcddefgGhijklmnoPR3. I am able to remove the special characters easily but can’t for the life of me work out how to remove the duplicate characters ? This is my current code for removing the special characters :

var oldString = aabcd*def%gGGhhhijkklmnoP\122
var filtered = oldStringt.replace(/[^\w\s]/gi, ""); 

How can I extend the above regex to check for duplicate characters and those duplicate characters separated by non-alphanumeric characters.

  • 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-26T05:18:41+00:00Added an answer on May 26, 2026 at 5:18 am

    The regex is /[^\w\s]|(.)\1/gi

    Test here: http://jsfiddle.net/Cte94/

    it uses the backreference to search for any character (.) followed by the same character \1

    Unless by “check for duplicate characters” you meant that aaa => a

    Then it’s /[^\w\s]|(.)(?=\1)/gi

    Test here: http://jsfiddle.net/Cte94/1/

    Be aware that both regexes don’t distinguish between case. A == a, so Aa is a repetition. If you don’t want it, take away the i from /gi

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

Sidebar

Related Questions

I'm trying build a regex that will replace any characters not of the format:
I've been whacking on this regex for a while, trying to build something that
I'm trying to build a function within my mvc app that will validate the
I'm trying to build a regular expression that will detect any character that Windows
I'm trying to write a simple php function that will strip everything between two
I'm trying to build an efficient string matching algorithm. This will execute in a
I have this text block [QUOTE=Name;123]Text[/QUOTE] I am trying to build a regex to
I'm trying to build a regex that joins numbers in a string when they
I'm trying to build an asp.net page using c# that will query a column
I'm trying to build a grammar with the following: NUMERIC: INTEGER | FLOAT |

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.