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.
我需要使用正则表达式验证以下字符串。这些是适用于该字符串的约束。
例如:84256142V、547812375X
谁能提供我正则表达式来验证这一点。
^\d{9}[VX]$如果您将正则表达式引擎置于不区分大小写模式,^\d{9}[vVxX]$否则。
^\d{9}[VX]$
^\d{9}[vVxX]$
取决于语言,但它会是这样的:
^[0-9]{9}[VvXx]$
这是您需要的正则表达式:/^(\d){9}(V|X)$/i
/^(\d){9}(V|X)$/i