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
Golang - extract links using regex I need to get all links from text which are in specific domain example.de using Regex in Go Below are all possible links that
Hi, I have this code: var regcat = /\b(aa1)[a-z]\d+[.][g][i][f]\b/; var testit = "aa1a2.gif"; console.log(regcat.test(testit)); it produces TRUE as expected b
I am trying to create a Angular Validator that allows me to validate a string of both letters and characters of lengths 6-12 inclusive, but not of length 9. I h
In a development context, I would like to make sure all strings in source files within certain directories are enclosed in some macro "STR_MACRO". For this I wi
I manage to do partially just one part, but cannot make the second part work. If a word has < 4 characters, only * should be included at the end of that wo
I'm trying to write a regex that splits elements out according to a delimiter. The regex also needs to ensure there are ideally 4, but at least 3 colons : in e
I want to write regex to recgonize a hex string with length of 16 bytes, for example: 1a2b3c4d1a2b3c4d The following answers is NOT correct: [0-9a-fA-F]{16} b
I want to write regex to recgonize a hex string with length of 16 bytes, for example: 1a2b3c4d1a2b3c4d The following answers is NOT correct: [0-9a-fA-F]{16} b
I am working with a dataset that has column with some underscores. There is a patter to it but they are different patterns, as shown below ID Col1 1029
i need to validate a variable in terraform. The content of the variable should be only 0-9, a-z and A-Z. Im tried it with following code: variable "application_
Say I want to match the presence of the phrase Sortes\index[persons]{Sortes} in the phrase test Sortes\index[persons]{Sortes} text. Using python re I could do
I need to implement a regex which cover several requirements. These are the following: A length restriction to max 8 chars should be done (with or without wildc
I am querying metadata on Snowflake which contains a column of queries: select query_name from metadata query_name SELECT * FROM SYSIBM.SQLCOLUMNS SELECT * FR
The Unicode regular expression documentation describes doing complex matches for text. Specifically, I am wondering about matching various scripts within a stri