Hello, could someone help me with a regular expression that only show me numbers? I want to create a report with search keywords, and right now it is showing both words and numbers.
Thanks in advance!
Hello, could someone help me with a regular expression that only show me numbers? I want to create a report with search keywords, and right now it is showing both words and numbers.
Thanks in advance!
Hello,
The website has a search box where the users can input text and numbers. The numbers are usually for finding forms that has specific form numbers. I would like to create a report to extract which forms are being searched for. Right now the search keywords contains both text and numbers.
Hi,
for filtering any keyword containing a number, use \d
for a regex filter. If only numbers should appear, ^\d*$
would be a solution. If there may be spaces and / or dashes in a “number” search term, use ^[\d\s\-]*$
.
best
Markus
Thank you so much, this created exactly the type of report I was looking for!
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.