Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
69 views

For example, if there a sequence of 2 or more :0000: then I like to replace them with :. In the code below, the result should be 2a00:1450:4028:805::00001111:2005 but it just ignores the replacement. ...
LWC's user avatar
  • 1,235
0 votes
0 answers
30 views

I am trying to do a replace on the following string where the last five digits are different in each row- Stipends I understand that I should be able to do this with Regex replace but am struggling ...
Emma Richardson's user avatar
0 votes
1 answer
54 views

I want a Powershell regex replace command to convert strings such as these... RedHerringFallacy SunkenCostFallacy FalseDilemmaLogic AnyOtherCamelCapString to... Red_Herring_Fallacy ...
Jerome B's user avatar
-3 votes
2 answers
89 views

I'm trying to get Java regex working to replace specific phrases in a comma delimited list. For example I have a string of "BIG BOAT , GREEN CAR,BIG BOAT, YELLOW TRUCK, BIG BOAT, AMAZON ECHO, ...
codingManiac's user avatar
  • 1,710
1 vote
1 answer
58 views

I have several videos that has either round brackets and/or square brackets with some text inside those like (ANTYHING HERE) OR [ANTHING HERE]: For example: MOVIENAME 2024 LANG [SOMETEXTHERE] 1080P....
Vicky Dev's user avatar
  • 2,243
-1 votes
1 answer
163 views

I want to separate a one-cell sentence into cells of 4 words each in the same row. If the sentence has more than 12 words, the 12th word should append "..." and add no more words. SPECIAL ...
user1132149's user avatar
1 vote
2 answers
127 views

I'm trying to write a Python script which replaces occurrences of given keywords, in given md file, by themself between [[ and ]]. It will be used several times on the same files, so I don't want to ...
A. Ocannaille's user avatar
0 votes
1 answer
178 views

I have strings in this format in a column called "Charge_Details" with minor differences: SBLC FEE <> 1 - 360 day*!<> 400,000.00 USD<> 08/02/18 - 17/12/18 312 <>9 I'...
Emmanuel Salau's user avatar
-1 votes
1 answer
102 views

I'm developing a Flutter app. I have used a function written by me to calculate the sizes of every stuff. This was called scaleAdapter and its signature was this one: scaleAdapter(aNumber) This is ...
Ale TheFe's user avatar
  • 1,731
-2 votes
1 answer
69 views

I would like to replace all string that do not equal this: readWriteDataGroup="Everyone" on a file I have open in Notepadd++. One of the strings that it will need to replace has this string: ...
Rehaan's user avatar
  • 3
0 votes
0 answers
32 views

I'm trying to write a regex for replacing sequential occurrence of specified characters with single ones. I used a backreference and character class for that. However, some of the characters (. and ,, ...
ENIAC's user avatar
  • 1,198
0 votes
1 answer
225 views

I've found this topic which only explains how to replace the first regex match. What about some n'th match? Say I have a string and a regex like these: std::string str = "fast cast dust crust ...
Kaiyakha's user avatar
  • 2,075
0 votes
1 answer
68 views

I would like to get rid of "$" in several cells. A cell contains f.e. "$q$3", but I would to change it into "Q3" How to fix this with function regexreplace? Anyone? ...
bijvoorbeeld's user avatar
3 votes
3 answers
747 views

I am trying to process transcripts that appears to use voice to text with C#. One major issue I am running into is repeating words and or phrases. I would love to use a RegEx expression to replace ...
Andrew Harbert's user avatar
0 votes
1 answer
56 views

I want to remove character other than letters and number between two symbol which are < and > with empty string. The string is <F=*A*B*C*> (?<=F=|\G(?!^))[A-Za-z1-9]*\K[^A-Za-z1-9]+ /...
Premlatha's user avatar
  • 2,004
0 votes
1 answer
81 views

This is a simple code which uses regex to identify a pattern and termcolor to replace the pattern with the highlighted version of the same, basically used for highlighting a required text. The code ...
Nithin Mohan's user avatar
1 vote
1 answer
71 views

Goal: Capture only the purchase date, amount, and purchased item name(s). Ignore all blank lines Ignore Reference # & SHIPPING AND TAX string Then, repeat this on the next grouping of purchases. ...
ManniStudio's user avatar
0 votes
1 answer
101 views

Goal: I want a CSV file as my result. I want to change the space char to a comma on each line of data. BUT, I also need the data for the 3rd field (Description) to remain as is with original space ...
ManniStudio's user avatar
1 vote
2 answers
72 views

I am trying to create a regex in Notepad++ to remove words except those enclosed between special characters. I am using this regex \<.*?\> which removes the words along with text. Eg: Sample ...
Nischal Kasera's user avatar
0 votes
3 answers
985 views

In Column F, I have a list of states and their abbreviations. enter image description here I want to use a regex function to extract the state and the state code so the output looks like the contents ...
cheesebag's user avatar
0 votes
1 answer
362 views

I have a sshd_config configuration file which contains commented as well as uncommented lines. I want to comment all the uncommented lines in that file using puppet. Is there any optimal/simple way to ...
anonymous user's user avatar
3 votes
3 answers
97 views

Trying this to replace all lowercase words is not working properly =regexreplace(A1;"\b[a-züöäß]+\b";"") Example sentence: Mit Sätzen wie Gewinne laufen lassen Verluste begrenzen ...
user3392296's user avatar
0 votes
1 answer
257 views

I use this function to find if the pattern is in the column and replace it with the replacement but it does not give. Can someone tell where I make the mistakes? patterns = [ '15/19', '14/11', ...
elokema's user avatar
  • 159
0 votes
1 answer
965 views

I have a list of videos for which I want to easily see the number of views. Is there a way to do that with REGEXREPLACE, or some other way?
Razmik Badalyan's user avatar
-1 votes
1 answer
429 views

I import data via IMPORTXML and get it in the form as shown in column A:B How can I use REGEXPREPLACE to bring them into the form as I showed in columns D:F ? With the price I tried ARRAYFORMULA(--...
Dmitriy Amangaliev's user avatar