Answers for "c# string remove all letters regex"

C#
3

remove all text after string c#

string input = "text?here";
int index = input.LastIndexOf("?"); // Character to remove "?"
if (index > 0)
    input = input.Substring(0, index); // This will remove all text after character ?
Posted by: Guest on September-03-2020
0

remove control characters from string c#

string input; // this is your input string
string output = new string(input.Where(c => !char.IsControl(c)).ToArray());
Posted by: Guest on August-20-2020

Code answers related to "c# string remove all letters regex"

C# Answers by Framework

Browse Popular Code Answers by Language