Questions tagged [editpad]

33 questions
1
vote
1 answer

EditPad: Find and Replace with RegEx Backreferences

I'm trying my hand at regex again. In particular, using a backreference to found text in the replace string in the EditPad text editor. Subject: Product1 Desc,12 PIN,GradeA Qty Price Product2 Desc,28 PIN,GradeA Qty Price Goal: Since the text is…
mOrloff
  • 2,547
  • 4
  • 29
  • 48
1
vote
2 answers

EditPad 7: Regular Expression for end of line?

I'm using EditPad 7 to edit some text and using regular expressions within the find and replace. I am trying to find only words at the end of the line. Ex: Wrapper:H Wrapper:H Binder:G Wrapper:Honduras I want to find the capital H on the first…
Jeremy
  • 3,620
  • 9
  • 43
  • 75
0
votes
0 answers

Migrating from EditPad Classic to EditPad Lite, simple question

I have been using EditPad since it first version (I don't remember what postcard I sent). I tried EditPad Lite when it was announced and had the problem I am writing about, but the original was working so I never changed. Once I started (not…
0
votes
0 answers

EditPad: How do you work with replacement string conditionals?

I want to be able to search for a letter using Regex and then convert the case of the letter. I know I can refer to the letters and use this: Search for ^[adw] and replace with \U0 for example but I can't do this searching for ^\w so the expression…
Paul
  • 3
  • 3
0
votes
0 answers

Remove specific lines in .txt resulting from from 'Dir /s' Windows Command

Comparing files on multiple thumbdrive to delete duplicate and older files. Tools: Directory listings created using Microsoft command.com: dir /s >> directory.txt Remove all blank lines, lines that begin with date (format: mm/dd/yyyy) time (format:…
0
votes
1 answer

How can I remove the trailing space from a capture group for bidirectional text?

Regex: (((([\u0600-\u06FF])+)\s)+)\↓\s(((([\u0600-\u06FF])+)\s)+) Desired result is that it should only the target text: لَأَرْكُلَنَّكَ رَكْلَةً ↓ لَا تَأْكُلُ بَعْدَهَا بَعْدَهَا أَكْلَةً Actual Result is that the regex captures one extra space…
novastar
  • 166
  • 3
  • 11
0
votes
1 answer

How to replace the first and last letter in EditPad?

In EditPad I want to replace to

foo far baz

To serach/locate the string I use: <.*?\w> My question is, how to write the replace command? On https://www.regular-expressions.info/refreplacebackref.html I could not find command to…
user9508949
0
votes
0 answers

How to get every highlighted 1st, 4th, 7th, 10th line (starting at line 1 then +3) regex?

I have gotten the page source from Amazon and used Regex to find the names of the monitors I want. On amazon you can see 3 monitors per line with prices. I essentially want the monitors at the start of each line which means every 1st, 4th line and…
user8223669
0
votes
1 answer

Regular Expressions - Select the Second Match

I have a txt file with and between words that I would like to remove using Editpad For example, I'd like to keep when it's like this: Phrases and words. And I'd like to remove the and tags inside the phrase, when it's like…
Commentator
  • 640
  • 1
  • 6
  • 22
0
votes
1 answer

Regex How to find exact word between " and /

So I build the regex below that does it job well. "item_name\/": \/"[a-zA-Z1-9 ]{1,}\/ This will successfully find all text below: "item_name/": /"Legendary Frost Armor/ "item_name/": /"Branch/ "item_name/": /"Tier 5 Legendary Stick/ "item_name/":…
Anti-Fun
  • 15
  • 1
  • 3
0
votes
2 answers

editpad regex. Searching files for "http://" but excluding "http://particular.domain.com"

I'm using RegexBuddy and getting nowhere defining a search parameter for editpad. I'm trying to search through my CMS web site for all instances of "http://" (to see where the protocol was hardcoded incorrectly), but every file has…
bcsteeve
  • 973
  • 9
  • 22
0
votes
2 answers

EditPad: how use Replace with RegExp strings and Carriage Returns

I have the next text: hola este es un test. Test de regexp. Super man es un héroe de comic. Test nueva linea And the result I expected If there are a dot (.), then a carriage return and then a word (A-Za-z), put inside a extra Carriage Returns.…
Hernaldo Gonzalez
  • 1,977
  • 1
  • 21
  • 32
0
votes
1 answer

How to create a regular expression with incremental numbers and fixed letters for EditPad

I am needing to search texts that have these (differing) values in them: 0000.html - 8675.html and H0000 - H8675 and include them in the overall search. The searches are failing because the next page has a slight variation only here, here, and…
0
votes
2 answers

EditPad: How to replace multiple search criteria with multiple values?

I did some searching and found tons of questions about multiple replacements with Regex, but I'm working in EditPadPro and so need a solution that works with the regex syntax of that environment. Hoping someone has some pointers as I haven't been…
JVC
  • 793
  • 3
  • 8
  • 21
0
votes
2 answers

Using regex to eliminate chunks in a file (categorized events in iCal file)

I have one .ics file from which I would like to create individual new .ics files depending on the event categories (I can't get egroupware to export only events of one category, I want to create new calendars depending on category). My intended…
PiEnthusiast
  • 314
  • 1
  • 4
  • 19