Horje
c# replace all non numeric characters Code Example
c# replace all non numeric characters
var input = "+33 06 06-78-75 aze";
var result = new string(input.Where(c => char.IsDigit(c)).ToArray());
//result => "3306067875"




Csharp

Related
c# get username Code Example c# get username Code Example
how to replace last character of string in c# Code Example how to replace last character of string in c# Code Example
c# list to string comma separated Code Example c# list to string comma separated Code Example
c# gzip byte array Code Example c# gzip byte array Code Example
convert to base64 c# Code Example convert to base64 c# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9