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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:49:36+00:00 2026-06-17T08:49:36+00:00

I would like to create a regex which will allow me to add spaces

  • 0

I would like to create a regex which will allow me to add spaces around assignment operators in C++ code (as I prefer this style), e.g. so that

x=something

becomes

x = something

but

if(y==x)

does not become

if(y = = x)

and so on including !=,<=,>=

I am relatively new to regular expressions and have tried the following:

(?<![\s=])(=)(?!=)

I thought this would be a good starter, but this does not seem to match. Could someone explain what I have not understood about regex here?

Edit

Example using regex which does not match in Code::Blocks IDE

Code::BLocks regex attempt

  • 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-06-17T08:49:37+00:00Added an answer on June 17, 2026 at 8:49 am

    Try something like this: (?<![<>=!])\s*=\s*(?!=) replaced with =.

    OR

    ([^<>=!])\s*=\s*([^=]) replaced with \1 = \2

    Both lookaround assertions are needed since the pattern is not anchored.

    Your own regex was, in reality, just missing <> in the character class. I have improved on it a tiny bit, look at the demo.

    Demo+explanation for first regex: http://regex101.com/r/kU1hP2
    Demo+explanation for second regex: http://regex101.com/r/lK1oQ3

    Note: \s matches whitespace!

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

Sidebar

Related Questions

I would like to create a regex to validate customer names. This would be
I would like to create a regex in Java / Android which truncates a
I would like to create a regex which validates a name of a person.
How can I create an XPath expression that works like a regex would, so
i would like create a array of structure which have a dynamic array :
I would like to create this shape using just css. I am pretty sure
I would like to create a query where I select all records which contain
I'm terrible at Regex and would greatly appreciate any help with this issue, which
I would like to create a PHP page which accepts an arguement like so:
I made this regex: /\<+[a-zA-Z0-9\=\\s]+\>+.+\<\/+[a-zA-Z0-9]+\>/gi which matches a full html tag like: <p>this is

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.