2011-06-23 3 views

答えて

1

は、次の正規表現を使用します。

例えば
@ManyToOne$ 

C#で:

Regex rgx = new Regex("@ManyToOne$"); 

Console.WriteLine("Matches: " + rgx.IsMatch("@ManyToOne(fetch = LAZY)")); //Matches: false 
Console.WriteLine("Matches: " + rgx.IsMatch("@ManyToOne")); //Matches: true 
関連する問題