I need to hit ›page not found‹ log entries like this one: 185.220.100.252 - - [13/May/2022:10:03:58 +0200] "GET /EXPLOIT.php HTTP/1.1" 404 14780 "
I am using a prometheus plugin in Telegraf to get the data from promitor and push it to InfluxDB. However, as per my requirement there is one tag named as "reso
Hi can someone explain me why last octet of the IP if 01 or 001 is not capched by this regex ? (\.?)([2-9][5-9][6-9]|[3-9][0-9][0-9]|0[0-9][0-9]?)($|\.) Debug
I would like to search for dialogues in between quotation marks and dashes, but I can't seem to code it. Regarding dialogues marked by quotation marks, I have f
I'm working with this pipeline where running tests from a commit message should be an option. I'm a novice in groovy and regex, but I have managed to get matche
This is my try, it actually put the first and seconds groups of 3 digits between parenthesis while I only need to put the first group only between parenthesis
need to find values in numeric_column(string) that don't contain '-' or '[0-9] or '.' I am a little bit novice in Athena... so honestly don't
What does the ?! mean in the following regex expression? new RegExp('http:\/\/(?!' + location.hostname + ')')
I would like to match a string like \code, but not when the backslash is escaped. I think that one way of doing this could be matching an odd number of backslas
From what I understand, C++ regex symbol ^ should match only the beginning of input and $ should match only the end of input. This can be changed to match begin
For example, to match the first slash after the domain name in the URL. Intent: Only match '/' in '.com/...' but not any '/' in 'https://'. url = 'https://examp
I am very new to linux & bash script. I'm trying to read an xml file using curl command and count the number of occurrence of the word </entity> in it
I am trying to match a multi line text using java. When I use the Pattern class with the Pattern.MULTILINE modifier, I am able to match, but I am not able to do
How to Set Todays Date as Minimum value in Input.Date Action of Adaptive Card. When a user select date ,all Backdates & Previous dates need to be blocked an
Assume I have a string that consists of multiple words. These words aren't separated by spaces, but every word starts with a capital letter. This type of naming
The regexp.FindStringIndex(s string, n int) []int function returns byte indices of matches. In simple scenarios, these locations correspond to the "character p
In VSCode, I'm looking for all files that contain a return statement followed by the word use but that don't have const [A-Z] at the start of a line in between
I am looking to grep any positive/negative integers only and no decimals, or any other variation including a number. I have a testpart1.txt which has: This is a
my @a_columns = map { s/^"|"$|\n|\r|\n\r|"//g; $_ } split /;/, $s_act_line; above mentioned is my code. i am getting automatic warning while merging this code
I have a pattern of regex that should match input that way: Work -> correct {"name": "name"} -> correct (any correct json format object) War And Piece -&g