正则表达式在Google Analytics(分析)中双斜杠

时间:2019-12-10 06:59:07

标签: regex filter google-analytics

我想在Google Analytics(分析)自定义报告过滤器中//https://之后的一个或多个https://website.com.au//my-account//进行正则表达式。

我发现此正则表达式可以正常运行,但不能在GA中使用。

正则表达式:(?<!:)\/\/

必需的解决方案: 我需要找到的是//.com.au之后的my-account,而不是https:之后的那个。

谢谢!

1 个答案:

答案 0 :(得分:0)

一种选择是使用negated character class来匹配除 $weather = chaira_weather::selectRaw('(date1+time1) as timestamp, value') ->whereBetween('timestamp', $dateScope) ->orderBy('timestamp', 'ASC') ->get(); 以外的任何字符,然后使用捕获组来匹配:

//

Regex demo

要在https://之后找不到匹配项,可以使用alternation匹配所需内容,并在组中捕获不需要的内容

[^:](\/\/)

Regex demo