Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、正規表現が必要です。最初の文字は大文字の「L」にする必要があり、残りは数字のみで、サイズは 9 にする必要があります。
実際に私はこれを使用しています:
Regex RgxUrl = new Regex("[^a-z0-9]");
ありがとう。
あなたの正規表現は
^L[0-9]{8}$
^文字列/行の始まりをマークし、文字列/行$の終わりをマークします
^
$
{8}は、8 桁に一致する修飾子です。
{8}