编写正则表达式,不包含任何内容

Vik*_*ary 1 regex regex-negation

如何编写正则表达式以匹配,

    a string which does not contain the underscore "_".

Rob*_*rco 8

/ ^ [^ _]*$ /

[^]语法表示"不包含任何这些字符".