本文介绍了允许HTML 4.01 ID值的正则表达式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您可以帮我建立相匹配的有效W3C HTML 4.01 ID 值一个正则表达式?

与W3C规范根据:

解决方案

You can use this regex

^[a-zA-Z][\w:.-]*$

^ depicts the start of string

[a-zA-Z] matches an uppercase or lowercase letter

* matches the preceding character 1 to many times

\w is similar to [a-zA-Z\d_]

$ is the end of string

这篇关于允许HTML 4.01 ID值的正则表达式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 09:56