标签: mongodb database
在oracle中:
SELECT REGEXP_SUBSTR ('a b c d', '(\S*)(\s)', 1, 1) FROM dual;
输出' a'通过这个sql。
mongo db也可以这样做吗?
我无法找到方法。