正则表达式包含许多不同的字符

发布于 2024-12-27 22:55:05 字数 238 浏览 1 评论 0原文

我在创建用于 jQuery 验证的正则表达式时遇到一些问题。 我有一个字段,可以包含以下字符:拉丁字母、丹麦语区域设置符号和变音符号、数字、点、空格、撇号、下划线和连字符。

到目前为止,我已经得到了这个正则表达式:

/^[-\sa-åA-Å]+$/i.test(value)

这确保该字段可以包含丹麦字母、连字符和空格。

谁能帮我为上述字符创建正确的正则表达式?

I have some problems creating a regular expression to use in my jQuery Validating.
I have a field, that can include the following characters: Latin letters, danish locale symbols and diacritical signs, digits, dot, whitespace, apostrophe, underscore and hyphen.

So far I've got this regex:

/^[-\sa-åA-Å]+$/i.test(value)

This makes sure that the field can include danish letters, hyphen and whitespace.

Can anyone help me creating the correct regex for the above characters?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

拥抱我好吗 2025-01-03 22:55:05

您可以通过 Unicode 代码点将丹麦符号添加到正则表达式中(即 \u0020 表示空格)。 维基百科应该有一个 Unicode 字符列表。

You can add the Danish symbols to your RegExp via their Unicode codepoint (i.e. \u0020 for a space). Wikipedia should have a list of the Unicode characters.

徒留西风 2025-01-03 22:55:05

在 Reg Exp 中使用 Unicode 范围和 Unicode 值。

如需帮助:

  1. http://kourge.net/projects/regexp-unicode-block
  2. http://unicodelookup.com/

Use Unicode ranges and Unicode values in Reg Exp.

for some help:

  1. http://kourge.net/projects/regexp-unicode-block
  2. http://unicodelookup.com/
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文