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.
我的变量列可以是字符串或数字/浮点数。我需要使用我的正则表达式来捕获20000和"20000"。现在我的正则表达式/^#{column}$/i只捕获字符串"20000"。除此之外,我需要它保持当前不区分大小写。
20000
"20000"
/^#{column}$/i
我正在使用 Mongoid 来查询 mongo 数据库。整个查询是
Mongoid.client("default")["table_name"].find({ field: /^#{row[column]}$/i })