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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T03:36:48+00:00 2026-06-01T03:36:48+00:00

I have this sample string where I would like to replace the star with

  • 0

I have this sample string where I would like to replace the star with an opening and closing strong tag using regular expressions in JavaScript:

To increase search results, use the 8** prefix.
877 and 866 will result in more matches than 800 and 888 prefixes.
*Note*: The pattern for a custom number can be more than 7 digits. For example: 1-800-Mat-tres(s)

The ideal output would be:

To increase search results, use the 8** prefix.
877 and 866 will result in more matches than 800 and 888 prefixes.
<strong>Note</strong>: The pattern for a custom number can be more than 7 digits. For example: 1-800-Mat-tres(s)

The only caveat being that if there are two starts in a row (like 8**), that they not be replaced with the strong tags.

Thank you in advance for any assistance.

  • 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-01T03:36:50+00:00Added an answer on June 1, 2026 at 3:36 am

    Maybe you could try something like this?

    \*(\S[^\*]+\S)\*
    

    The + means 1 or more, so will only match if there is something between the *.

    The [^\*] means anything that’s not a star *.

    UPDATE
    I’ve updated the regex above to specify that it doesn’t match nonwhite space character’s in between the * and and the first and last characters of each match. This prevent’s the highlighted bit below from incorrectly matching:

    8** prefix.
    877 and 866 will result in more matches than 800 and 888 prefixes. *
    Note*

    Here is the same regex with comments (in javascript)

    "\\*" +       // Match the character “*” literally
    "\\S" +       // Match a single character that is a “non-whitespace character”
    "[^\\*]" +    // Match any character that is NOT a * character
       "+" +        // Between one and unlimited times, as many times as possible, giving back as needed (greedy)
    "\\S" +       // Match a single character that is a “non-whitespace character”
    "\\*"         // Match the character “*” literally
    

    Finally, here is an example of the javascript you could use:

    yourStringData.replace(/\*(\S[^\*]+\S)\*/g, "<strong>$1</strong>");
    

    Just replace the yourStringData with a variable containing the data you want to run the replace against.

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

Sidebar

Related Questions

Assume I have a class that looks like this: class Sample { public string
I have a string like this: $data = 'id=1 username=foobar comment=This is a sample
I have a simple web service operation like this one: [WebMethod] public string HelloWorld()
If I have a simple class setup like this: class MyClass { private string
I have this sample string : &Lt;! [If Gte Mso 9]>&Lt;Xml> &Lt;Br /> &Lt;O:Office
Given the following text: This is!!xa simple string!xpattern I would like to get a
I have this sample string: Image: SGD$45.32 SKU: 3f3f3 dfdfd grg4t BP 6yhf Pack
I have a Visual Studio 2008 C++ application where I would like to replace
I know this might be very easy to some,, I have a simple string
Simple regex question. I have a string on the following format: this is a

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.