Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,943 questions

51,884 answers

573 users

How to remove all non-alphanumeric characters from a string in C#

3 Answers

0 votes
using System;
 
public class removeAllNonAlphanumericCharacters_CSharp
{
    static string removeAllNonAlphanumericCharacters(string str) {
        char[] arr = str.ToCharArray();
 
        arr = Array.FindAll<char>(arr, (ch => (char.IsLetterOrDigit(ch))));
                                         
        return new string(arr);
    }
    
    static void Main()
    {
        string str = "-csharp-  >>-progr{@()}amm.. #$ing-";
         
        str = removeAllNonAlphanumericCharacters(str);
         
        Console.WriteLine(str);
    }
}
 
 
/*
run:
 
csharpprogramming
 
*/

 



answered Feb 6, 2019 by avibootz
edited Jun 30, 2024 by avibootz
0 votes
using System;
using System.Text.RegularExpressions;

public class removeAllNonAlphanumericCharacters_CSharp
{
    static string removeAllNonAlphanumericCharacters(string str) {
        return Regex.Replace(str, "[^a-zA-Z0-9]", "");
    }
    
    static void Main()
    {
        string str = "-csharp-  >>-progr{@()}amm.. #$ing-";
         
        str = removeAllNonAlphanumericCharacters(str);
         
        Console.WriteLine(str);
    }
}
 
 
/*
run:
 
csharpprogramming
 
*/

 



answered Sep 10, 2019 by avibootz
edited Jun 30, 2024 by avibootz
0 votes
using System;
using System.Linq;

public class removeAllNonAlphanumericCharacters_CSharp
{
    static string removeAllNonAlphanumericCharacters(string str) {
        return new string(str.Where(c => char.IsLetterOrDigit(c)).ToArray());
    }
    
    static void Main()
    {
        string str = "-csharp-  >>-progr{@()}amm.. #$ing-";
         
        str = removeAllNonAlphanumericCharacters(str);
         
        Console.WriteLine(str);
    }
}
 
 
/*
run:
 
csharpprogramming
 
*/

 



answered Jun 30, 2024 by avibootz
...