Find Sequence of alphabets in the string
I need to find 5 sequence of alphabets has exists in a given string using regular expression. Sequence which should check in any of the form like ABCDE, BCDEF, DEFGH, EFGHI,......,PQRST,...,VWZYZ. Eg....
View ArticleHow to skip a particular term in regex find and replace?
Hello. I am an editor at english wikipedia. I am adding template of wikiproject banners on the talkpages of articles which come under the scope of wikiproject. Basically, I am adding{{WikiProject...
View ArticleFinding a specific number in a string.
I can find plenty of examples of how to find a number in a string, but now how to find a number preceded by a specific string. Like... [2020-07-24_184102][ACF11B2Y90][CCT]_Cycle0001.csv How can I say...
View Article9 million Rows in Excel
Hi, i got an 9 million row excel file and i need to join it with another excel file base on numeric values. Issue : I suppose to have only unique numbers in column A, but unfortunately i got some...
View ArticleRegEx Split
Hi I have a line in my csv file as below""|*"I have delimiter |* and an escaped \" quote in me"|*100|*200|*300|*"am a string"|*"" I have to interpret " quote as text-qualifier and |* as delimiter. I...
View ArticleString Replacement
Hi, I'd lke to subsitute the string Alfa("Beta") to Alfa(Gamma("Beta")) using regular expressions in Visual Studio using regexp. The first part is simple, the search string will be Alfa\("(.*)"\) But...
View ArticleRegEx: Get Values from HTML Attribute Tags
I need to get the values from below following html snippet. So far I came up with this regex which helps me trim it down to the values I needed, but to automate this I need to join 2 regex statements...
View ArticleA Regular Expression that will search and replace characters from a string
Hello Community, I'm trying to compile a regular expression that will search for strings that exclude certain characters. For example, the following string value has 6 leading 0's 000000120 The next...
View ArticleCapture values using regex
Hi I'm a Regex novice (very much learning as I go!) and I am trying to write a regex expression to capture the minimum and maximum temperature values in the string below. I'm hoping someone may be able...
View ArticleRegular Expression to Change Uppercase Text to Lowercase
Can someone assist with a regular expression that will replace and capitalize the first character in a text characters to lowercase For example PETER Before Peter After JohN Before John After paul...
View ArticleHow to namn this?
[S1.E2] The Series Name - The Episod Name To look like this: The.Series.Name.S01E02.The.Episod.Name. Not matching with tvdb will say, if it did, it had been easy Thanks for helping =)
View ArticleCase Conversion Regular Expression in JAVA 8
Hi Community, I have come to the conclusion that it may not to be possible to change the case of a string in JAVA 8 as simply as it is to change the case in say Perl. However, before I move on, I just...
View ArticleString Replacement in 'HTML 5 FireFox'
Hello Community, I have created Regex with Regex Magic with HTML 5 Firework, see attached. The Regex [A-Za-z]{3}\d{4} successfully finds a string such as GMK6954 using Character Spaces. Can someone...
View Articleregex pattern in order to get a list of numbers from a string
Hi there: Suppose I have a string with “1: a string, 2: other 5 string, 3: something 8; else”, what would be the regex pattern to obtain “1,2,3” as a result Thank you in advance, Rafael
View ArticleRegex only want the first match
Hi Would like to know if it's possible to get only the first match for this regex ^ \(SQL\)Max Duration..* ([0-9]+[0-9])( \([0-9][0-9][0-9][0-9]) I was able to isolate the value in second group but I...
View ArticleReplace certain characters in part of string?
Hello, I have a question on regex: Is it possible to match for certain characters (and replace them) in only a part of a string? E. g. str="I want to solve this problem" I now want to match all spaces...
View ArticleIgnoring repeating values?
Hello - I have the following string: [ CmdAV=show CmdArgAV=policy-map CmdArgAV=system CmdArgAV=type CmdArgAV=network-qos CmdArgAV=<cr> ] Is it possible to use regex to leave only: show policy-map...
View ArticleRegex for a Customer number
My Customer number is in the pattern : 88765 ie. 5 digits alone... using regex i have to validate if there are any characters and special characters in the customer number. Incase there are any...
View ArticleTSV out of a tab-based tree-like file
From a tab-based tree-like file, I'd like to get a flat-file DB (I think I'll make a program out of it and probably using ECMAScript/JavaScript, but whatever I end up doing I need a DB to start with)....
View ArticleUsing A Regular Expression To Show Rows In Pandas (Python)
Hi there, Here is part of a Python Code I have :-Copy Code #convert df['Durn'] column to datetime foramt df['Durn']= pd.to_datetime(df['Durn'],format='%H:%M:%S').apply(pd.Timestamp) #print("changing...
View Article