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.
我在 MySQL 中有一个包含正则表达式模式的表,例如 : FILE\\\\d{1,4}。但是,在尝试使用 Java 代码检索模式值时,该值似乎不是正确的格式。如何将此值存储在 MySQL 中,以便能够在代码中检索我想要的确切值:FILE\\d{1,4} 提前谢谢。
FILE\\\\d{1,4}
FILE\\d{1,4}
现在好了。对于这种情况,我只需在表中插入带有 4 个反斜杠 (\\) 的正则表达式模式,当我从 JAVA 的数据库中检索它时,我得到了两个反斜杠 (\)。这是由于 MySQL 应用了转义字符。谢谢 !