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.
ASP.NET で使用するための正規表現が必要です。10 桁の英数字にする必要があります。最初の 5 文字は英字、次の 4 つの数字と最後の文字です。
それはトリックを行う必要があります
^[a-zA-Z]{5}[0-9]{4}[a-zA-Z]$