.NET Framework
Espressioni regolari (System.Text.RegularExpressions)
Ricerca…
Controlla se il modello corrisponde all'input
public bool Check()
{
string input = "Hello World!";
string pattern = @"H.ll. W.rld!";
// true
return Regex.IsMatch(input, pattern);
}
Passando Opzioni
public bool Check()
{
string input = "Hello World!";
string pattern = @"H.ll. W.rld!";
// true
return Regex.IsMatch(input, pattern, RegexOptions.IgnoreCase | RegexOptions.Singleline);
}
Partita e sostituzione semplici
public string Check()
{
string input = "Hello World!";
string pattern = @"W.rld";
// Hello Stack Overflow!
return Regex.Replace(input, pattern, "Stack Overflow");
}
Abbina in gruppi
public string Check()
{
string input = "Hello World!";
string pattern = @"H.ll. (?<Subject>W.rld)!";
Match match = Regex.Match(input, pattern);
// World
return match.Groups["Subject"].Value;
}
Rimuovi caratteri non alfanumerici dalla stringa
public string Remove()
{
string input = "Hello./!";
return Regex.Replace(input, "[^a-zA-Z0-9]", "");
}
Trova tutte le partite
utilizzando
using System.Text.RegularExpressions;
Codice
static void Main(string[] args)
{
string input = "Carrot Banana Apple Cherry Clementine Grape";
// Find words that start with uppercase 'C'
string pattern = @"\bC\w*\b";
MatchCollection matches = Regex.Matches(input, pattern);
foreach (Match m in matches)
Console.WriteLine(m.Value);
}
Produzione
Carrot
Cherry
Clementine
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow