-1

私の問題は、PDFドキュメントを取得し、で始まる特定の番号を取得したいドキュメントを印刷する関数を構築しようとしていることです8

入力:

"hello world, the number I want call is 84553741. help me plz."

正規表現:

 String[] result = Regex.Split(Result, @"[^\d$]");

number で始まる number を見つけるにはどうすればよい8ですか?

4

2 に答える 2

1

次のコードは、指定された入力文字列から 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);
}
于 2013-04-17T12:34:23.037 に答える