dev jan

dev jan

  • 1.4k
  • 206
  • 6.8k

How to Get Old String After Replce String in Regex in C#

Sep 23 2017 12:43 AM
Hello,
 
string str = "Computer & Web Solution / deva/sasasa@ww";
 String stre = Regex.Replace(str, @"[^0-9a-zA-Z]+", "-");
 
My Result = Computer-Web-Solution-deva-sasasa-ww 
How to get   "Computer & Web Solution / deva/sasasa@ww" (Old String )  with Regex Or other Code 
 
 
 
 
 
 

Answers (1)