正则表达式模式,不应使用,;:|

时间:2019-04-25 12:37:18

标签: regex

我需要使用正则表达式模式,不允许将以下任何字符放入HTML输入中

string Name = "Mr Test Test";
string Money = "£100,000.00";
string Address = "5 Test Road, Test Street";

1 个答案:

答案 0 :(得分:1)

您可能会从中得到一些想法。

[^,;:|]+

DEMO ::: https://rubular.com/r/dKQzC1HrnMG88X