私の問題は、PDFドキュメントを取得し、で始まる特定の番号を取得したいドキュメントを印刷する関数を構築しようとしていることです8
。
入力:
"hello world, the number I want call is 84553741. help me plz."
正規表現:
String[] result = Regex.Split(Result, @"[^\d$]");
number で始まる number を見つけるにはどうすればよい8
ですか?
次のコードは、指定された入力文字列から 8 で始まるすべての数字を抽出します。
var input= "hello world, the number i want call is 84553741. help me plz.";
var matches = Regex.Matches(input, @"(?<!\d)8\d*");
IEnumerable<String> numbers = matches.Cast<Match>().Select(m=>m.Value);
foreach(var number in numbers)
{
Console.WriteLine(number);
}