class Program
{
static void Main(string[] args)
{
string x = "DEL_Demo_Test__DEL";
Console.WriteLine(Trim(x, "_DEL"));
Console.ReadLine();
}
private static string Trim(string text, string find)
{
Regex r = new Regex(find+"$");
bool t = r.IsMatch(text);
if (t){ return Regex.Replace(text,find + "$",""); }
return text;
}
}
In questo ( anche se pur breve ) brano di codice è presentato un sistema decisamente comodo per "eliminare un gruppo di caratteri" che terminano una stringa.
L'utilizzo di RegularExpression a volte "salva" da spiacevoli inconvenienti.
Nessun commento:
Posta un commento