Google analytics replace a single repeating character from URL - regex

I have the below request URI in google analytics
/search?q=text1-text2-text3
/search?q=menu
/search?q=test
/search?q=text23-text21-text22
/search?q=text244-text212
/search?q=Pens
I need to replace the - to a + either by using a advanced filter or a search and replace.
I tried to use \b-\b but the output was wrong. Can someone help me with the regex?

Related

Excluding a URL With Google Analytics Regex

I am tracking several urls on my website and I want to count only the ones beginning with /espace-debat
Examples :
/espace-debat/debat
/espace-debat/user/random-number
/espace-debat/debats/random-number
I am creating a goal on analytics to exclude all the others urls.
I am thinking about this Regex
^/(?espace-debat)
I don't know how to test it
Have you tried escaping your expression?
^\/(espace-debat)\/?

How do I Regex website URLs for apache nutch?

I am trying to set up apache nutch to crawl only websites with a specified domain using Regex. I don't have much experience with Regex and I'm having trouble working out how to do my domain in Regex.
The domain is
https://www.health.gov.au/
and I would like any web page with this domain followed by anything else to be accepted by the Regex.
thanks for your time
EDIT
for example, I would like https://www.health.gov.au/health-topics to be accepted by the Regex
You can use (https://www.health.gov.au/.*).
This will match all characters after https://www.health.gov.au/
RegexDemo

Google Analytics - Track Multiple Subdirectories (regex)

I am trying to create a view in Google Analytics to filter out the analytics from multiple subdirectories and all pages in them.
www.example.com/mysite
www.example.com/anothersite
www.example.com/lastsite
This is the regex I have written but when I run it, no results get returned ^/(mysite|anothersite|lastsite)?/*
Any ideas what I am doing wrong?
I was able to find a solution by first adding a trailing slash to the URLs (see: https://www.getelevar.com/how-to/fix-duplicate-url-google-analytics/) and then including a regex pattern of the request URI of ^/(mysite|anothersite|lastsite)/

Jmeter URL patterns to exclude under workbench - not excluding patterns that are giving there

Jmeter URL patterns to exclude under workbench - not excluding patterns that are giving there.
Can we give direct URL's. i have a list of URL that needs to be excluded from the recorded script.
Example:
'safebrowsing.google.com`
'safebrowsing-cache.google.com'
'self-repair.mozilla.org'
i'm giving these directly under patters to exclude. or do i need to give as a regular expression only.
Can someone provide more info whether to use regular expression or direct url can be provided under Requests Filtering in workbench
JMeter uses Perl5-style regular expressions for defining URL patterns to include/exclude so you can filter out all the requests to/from google and mozilla domains by adding the following regular expression to URL Patterns to Exclude input of the HTTP(S) Test Script Recorder:
^((?<google>|mozilla>).)*$
See Excluding Domains From The Load Test article for more details.
If you want any of the patterns to be excluded from recording in the scripts please follow the below pattern and add it in "URL Patterns to Exlcude" it must work.
1. For .html : .*\.html.*
2. For .gif : .*\.gif.* etc

How to set analytics goal for urls consisting of dynamically generated numbers in the url stub?

I have the url as shown below
http://www.somesite.com/icons/898989898998?download=1
I need to configure this url for the goal to find how many hits for this url. Kindly help me out in this.
I tried configuring /icons/\d*?download=1 with regular expression but it is not working.
you need to escape the ?
this matches 898989898998:
/icons/\d*\?download=1