您如何获得工作表查询以匹配包含换行符的单元格?
我尝试过matches '.*Something.*和(?s).*Something.*,但无法正常工作。
matches '.*Something.*
(?s).*Something.*
我宁愿不更改输入到查询中的数据。
这里是样本表:https://docs.google.com/spreadsheets/d/1sYqhuW-5ldfz69LZjSI_L6FwdfGs6pXeMakJKrtMsCw/edit?usp=sharing
您可以做:
=QUERY(A2:A7, "where lower(A) contains 'pear'")