a Windows tool which allows for searching for files using regex expressions, similar in functionality to linux grep, but with an advanced GUI
Questions tagged [powergrep]
22 questions
0
votes
0 answers
Powergrep regex replace with a list of words?
I am trying to make this regex work,
need to find every occurance of # character in a text, and replace every next occurance with different word, like:
word1, word2, word3...tried this
(^.*#.*$)
replace…

Jim8645
- 181
- 3
- 15
0
votes
2 answers
REGEX - replace text between end tag & start tag
I want to remove the text between the end of one HTML tag and the beginning of another.
The tags on the page have different text between them. There are of course multiple different blocks too delete on the page.
Section: ab (1)
Updated:…
Updated:…

Gareth Thomas
- 420
- 3
- 4
0
votes
2 answers
Notepad++ or PowerGrep regex to find, multiply and replace a price
I have an xml file that i need to find, multiply (e.g. by 1.25) and replace all prices.
Price tag looks like that:
The price tag should look like that after the operation:
Can this…

Sophocles
- 1
- 3
0
votes
2 answers
what is the equivalent for (?s) y (?m) en powergrep?
When using powergrep, there is an option called: file sectioning and the first 3 options are:
do not section files.
line by line
line by line including line breaks
I am guessing that first option would be similar to Perl's 'm' modifier ("^"…

alex
- 95
- 6
-1
votes
1 answer
How Would I write this Regular Expression?
How would I write a Regular Expression for this?
Backup 1 of (anything here, maybe multiple words).html
I thought it would be this
Backup\s1\sof(.*)\.html
but it's not working. I'm using power grep... am I supposed to put something at the…

dbaker6
- 39
- 2
- 8
-1
votes
1 answer
How to match only one string and not another
This is String 1:
Text1
I want to remove the span so it looks like this:
Text1
Which is easy enough with this regex:
Search:

Moogal
- 107
- 1
- 9
-3
votes
1 answer
regex to add a ? at the end of non-punctuated sentences
I'm looking for a regex formula to add a ? at the end of all non-punctuated sentences in a text document. I want to do this in edit pad pro or Power GREP.
for ex
Lichen planus occurs most frequently on the
A. buccal mucosa.
B. tongue.
C. floor of…

den
- 1
- 1