Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道,对于非 unicode,我们使用正则表达式模式x00-\x1F\x80-\x9F]+$. 我们可以使用不包括字母的正则表达式A, C, G, and T吗?
x00-\x1F\x80-\x9F]+$.
A, C, G, and T
您可以将 A、C、G 和 T 添加到否定字符类中。
^[^ACGT\x00-\x1F\x80-\x9F]+$