RegExp_Extract Google Data Studio 中第一个点之前的所有内容

RegExp_Extract everything before first dot in Google Data Studio

我正在尝试使用 Google Data Studio 构建浏览器版本的仪表板。 Google Analytics 中的“浏览器版本”字段过于详细,因此我想提取版本号中 . 之前的所有内容。我尝试使用以下公式创建一个新字段,但不断收到错误“Could not parse formula”。我已经在 regex101.com 上测试了这个 RegEx,它似乎可以工作所以也许我不了解 Google Data Studio?

REGEXP_EXTRACT(Browser Version,'^(.+?)\.')

试试下面的正则表达式。我认为问题是因为 (not set) 也是 Browser Version 维度的可能值,因此您的正则表达式也必须满足该条件。

REGEXP_EXTRACT(Browser Version,'^\D*(\d+)\D*')