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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T22:42:01+00:00 2026-06-03T22:42:01+00:00

Looking for help where given any string, return a string with alphanumeric characters only

  • 0

Looking for help where given any string, return a string with alphanumeric characters only and replace all non-alphanumeric characters with _

so string
“ASD@#$123” becomes
“ASD___123”

etc

thanks

  • 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-03T22:42:02+00:00Added an answer on June 3, 2026 at 10:42 pm

    For most string operations, you would be better off (in terms of both efficiency and conciseness) if you use regular expressions rather than LINQ:

    string input = "ASD@#$123";
    string result = Regex.Replace(input, "[^A-Z0-9]", "_", RegexOptions.IgnoreCase);
    

    If you want to preserve any Unicode alphanumeric character, including non-ASCII letters such as é, we can use the non-word character class to make it even simpler:

    string input = "ASD@#$123";
    string result = Regex.Replace(input, @"\W", "_");
    

    For the sake of comparison, here is the same conversion done using LINQ (allowing just ASCII letters and digits):

    string input = "ASD@#$123";
    string result =
        new string(input.Select(c => 
            c >= 'A' && c <= 'Z' || c >= 'a' && c <= 'z' || c >= '0' && c <= '9' ? c : '_'
        ).ToArray());
    

    Or, if Char.IsLetterOrDigit meets your requirements:

    string input = "ASD@#$123";
    string result = 
        new string(input.Select(c => char.IsLetterOrDigit(c) ? c : '_').ToArray());
    

    Note that Char.IsLetterOrDigit will allow non-ASCII letters, and is comparable to the \w word character class whose negation was used in our second example.

    Edit: As Steve Wortham has observed, the LINQ versions are actually more than 3× faster than the regex (even when a Regex instance is created in advance with RegexOptions.Compiled and re-used).

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

Sidebar

Related Questions

Looking for some help! I need to split a string at the last occurrence
I am looking for help with the database scheme, not the actual cloud itself.
I am looking for help in determining if the class model that I am
I'm looking for help with my query below. which is never returning anything for
I'm looking for help using sum() in my SQL query: SELECT links.id, count(DISTINCT stats.id)
I'm looking for help to create a query, to solve the following problem: Let's
LINQ gurus, I am looking for help to write a query... I have a
looking for some help with images referenced within the stylesheet. I have no problems
Looking for some help with optimising the query below. Seems to be two bottlenecks
-Hello, looking for some help. We currently have a winform app used to do

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.