正则表达式 - 如何否定 ^[A-Z]{4}[0-9]{2}$
Regular expression - how to negate ^[A-Z]{4}[0-9]{2}$
正则表达式 - 如何否定 ^[A-Z]{4}[0-9]{2}$
在此处查看演示 https://regex101.com/r/bO9pH0/2
/^(?![A-Z]{4}[0-9]{2}$).*/gm
正则表达式 - 如何否定 ^[A-Z]{4}[0-9]{2}$
在此处查看演示 https://regex101.com/r/bO9pH0/2
/^(?![A-Z]{4}[0-9]{2}$).*/gm