Data Studio 正则表达式计算字段替换为 |

Data studio regex calculated field replace after |

我在使用 | 之后替换页面标题的公式时遇到问题,使用 \| 它只是说“Could not parse formula”。有人可以帮忙吗?

REGEXP_REPLACE(Page Title, '\|(.*)', '')

所以Page name | Company name应该变成Page name

我建议使用

REGEXP_REPLACE(Page Title, ' *\|.*', '')

REGEXP_REPLACE(Page Title, ' *[|].*', '')

您需要将转义反斜杠加倍或将 | 放入字符 class 中,并在 "trim" 值之前添加量化的 space。您不需要该组,所以我建议将其删除。