정규 표현 식 에 사용 되 는 Regex. Matches 정적 방법의 몇 가지 용법
10373 단어 matches
//① = >
string Text = @"This is a book , this is my book , Is not IIS";
// , ,
string Pattern = "is";
MatchCollection Matches = Regex.Matches(
Text,
Pattern,
RegexOptions.IgnoreCase | //
RegexOptions.ExplicitCapture | //
RegexOptions.RightToLeft //
);
Console.WriteLine(" :");
foreach (Match NextMatch in Matches)
{
Console.Write(" :{0,2} ", NextMatch.Index);
Console.Write(" :{0,2} ", NextMatch.Value);
Console.Write("/n");
}
Console.WriteLine();
//② I
//“/b” , ( , )
Pattern = @"/bI";
Matches = Regex.Matches(
Text,
Pattern,
RegexOptions.ExplicitCapture //
);
Console.WriteLine(" :");
foreach (Match NextMatch in Matches)
{
Console.Write(" :{0} ", NextMatch.Index);
Console.Write(" :{0} ", NextMatch.Value);
Console.Write("/n");
}
Console.WriteLine();
//③ I , S
//“/b” , ( , )
///S*
Pattern = @"/bI/S*S/b";
Matches = Regex.Matches(
Text,
Pattern,
RegexOptions.ExplicitCapture //
);
Console.WriteLine(" :");
foreach (Match NextMatch in Matches)
{
Console.Write(" :{0} ", NextMatch.Index);
Console.Write(" :{0} ", NextMatch.Value);
Console.Write("/n");
}
Console.WriteLine();
//④ his iis,
Pattern = @"[h|i]is";
Matches = Regex.Matches(
Text,
Pattern,
RegexOptions.IgnoreCase | //
RegexOptions.ExplicitCapture //
);
Console.WriteLine(" :");
foreach (Match NextMatch in Matches)
{
Console.Write(" :{0} ", NextMatch.Index);
Console.Write(" :{0} ", NextMatch.Value);
Console.Write("/n");
}
Console.WriteLine();
//⑤ Url
Text = "http://192.168.0.1:2008";
Pattern = @"/b(/S+)://(/S+)(?::(/S+))/b";
Matches = Regex.Matches(Text, Pattern);
Console.WriteLine(" :");
foreach (Match NextMatch in Matches)
{
Console.Write(" :{0} ", NextMatch.Index);
Console.Write(" :{0} ", NextMatch.Value);
Console.Write("/n");
for (int i = 0; i < NextMatch.Groups.Count; i++)
{
Console.Write(" {0}:{1,4} ", i + 1, NextMatch.Groups[i].Value);
Console.Write("/n");
}
}
Console.Read();
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정규 표현 식 에 사용 되 는 Regex. Matches 정적 방법의 몇 가지 용법텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.