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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T22:00:36+00:00 2026-06-11T22:00:36+00:00

I have folowing string: a&b.c’d,e f How do I look like а_b_c_d_e_f How look

  • 0

I have folowing string:

a&b.c'd,e f

How do I look like

а_b_c_d_e_f

How look like the regex pattern?

Thanks in advance !

  • 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-11T22:00:37+00:00Added an answer on June 11, 2026 at 10:00 pm

    It will look as simple as…

    $str = "a&b.c'd,e f";
    $str = preg_replace('#\W#', '_', $str);
    

    … but it should actually depend on what characters you consider special, as \W is equivalent to [^a-zA-Z0-9_] (i.e., anything that is not alphanumeric or ‘_’). It may or may not be sufficient in your case; if not, perhaps you’d just use a character class here:

    $str = "a&b.c'd,e f";
    $str = preg_replace('#[^a-zA-Z0-9_-]#', '_', $str);
    

    In this example hyphen '-' won’t be replaced as well.

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

Sidebar

Related Questions

Hi guys i have the following string &|L1|L2|L3|& I would like to extract L1
I have the following string ListId={1CC88B01-E60F-45D1-8B3C-28852574156D}&ID={0}&ContentTypeID=0x01003D458D19EF31D845B3A7727B0F2F8FC8 I would like to use it as such
I have the following RegEx: /[a-zA-Z\d ']{1,30}/ and the following string: some text'&& Now,
I have the following string, which matches the following RegEx string. I would like
I have the following code string three() { return three; } void mutate(string& ref)
I have the following: string html_string = http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=pharma; string html; html = new WebClient().DownloadString(html_string);
I have the following text in a string in the resources file: <a href=mailto:mymail@mail.com>&lt;img
suppose i have the following: boost::unordered_map< string , someValueType > map; someValueType& value =
I have a URL string in the following format. http://myserver.com/_layouts/feed.aspx?xsl=4&amp;web=%2F&amp;page=dda3fd10-c776-4d69-8c55-2f1c74b343e2&amp;wp=476f174a-82df-4611-a3df-e13255d97533 I want to replace
I have the following string: string text = @<a href=http://raustdsx0700.real.local:7782/analytics/saw.dll?PortalPages&PortalPath= + dashboardURL + &Page=

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.