我想在Google Analytics(分析)自定义报告过滤器中//
中https://
之后的一个或多个https://website.com.au//my-account//
进行正则表达式。
我发现此正则表达式可以正常运行,但不能在GA中使用。
正则表达式:(?<!:)\/\/
必需的解决方案:
我需要找到的是//
和.com.au
之后的my-account
,而不是https:
之后的那个。
谢谢!
答案 0 :(得分:0)
一种选择是使用negated character class来匹配除 $weather = chaira_weather::selectRaw('(date1+time1) as timestamp, value')
->whereBetween('timestamp', $dateScope)
->orderBy('timestamp', 'ASC')
->get();
以外的任何字符,然后使用捕获组来匹配:
//
要在https://之后找不到匹配项,可以使用alternation匹配所需内容,并在组中捕获不需要的内容
[^:](\/\/)