Search found 19 matches

by 4EverMaAT
Sun Oct 04, 2020 8:56 am
Forum: TextCrawler - General
Topic: Batch editor - GOOD IDEA, but doesn't work too good on regex
Replies: 1
Views: 7457

Re: Batch editor - GOOD IDEA, but doesn't work too good on regex

@me_suzy have you tried using the built-in " RegEx Tester "? https://doc-10-7o-docs.googleusercontent.com/docs/securesc/uh3te2jcudj8gvkdabpl0nrdgclg22ph/tpthnbgskb0tb1s0h6ctsnaoiadu5gh6/1601798025000/13278252543953055385/13278252543953055385/1A3R_HXPs4kTn7g9BbD7J8KxpvrvEIwun?e=download&...
by 4EverMaAT
Sat May 09, 2020 5:06 pm
Forum: TextCrawler - General
Topic: textcrawler 4 in the works?
Replies: 3
Views: 11898

textcrawler 4 in the works?

was wondering if there was any update for textcrawler 4 or a newer edition of textcrawler 3.x . Have not seen a release in a while. Although the current version appears very stable and functional enough.
by 4EverMaAT
Fri Jan 31, 2020 8:44 am
Forum: TextCrawler - General
Topic: find some text AND NOT other text
Replies: 2
Views: 10853

find some text AND NOT other text

For example, I want to find "Monetary" but exclude that find if the word "Union" comes immediately afterwards. 1 AUD Australia 3 Monetary Policy Meeting Minutes 2 EUR European Monetary Union 2 EcoFin Meeting 3 EUR European Monetary Union 1 ZEW Economic Sentiment 4 EUR European Mo...
by 4EverMaAT
Tue Dec 03, 2019 3:48 pm
Forum: TextCrawler - General
Topic: Unrecognized escape sequence \K
Replies: 4
Views: 17198

Re: Unrecognized escape sequence \K

DigitalVolcano wrote: Tue Dec 03, 2019 11:07 am \k (lowercase) is supported, but not \K (uppercase)
Is there a workaround to using uppercase \K ??
by 4EverMaAT
Tue Dec 03, 2019 3:46 pm
Forum: TextCrawler - General
Topic: literal 0 in replace string after group substitution
Replies: 2
Views: 6095

Re: literal 0 in replace string after group substitution

Try- ${1}0 Putting the curly brackets round the number separates it from the following literals. I will remember that next time. I ended up doing $1 0 (a space between the $1 group and literal 0) And then added a separate non-regex search into the batch for RepeatableText= 0 (now a space between = ...
by 4EverMaAT
Mon Dec 02, 2019 12:32 am
Forum: TextCrawler - General
Topic: literal 0 in replace string after group substitution
Replies: 2
Views: 6095

literal 0 in replace string after group substitution

find

Code: Select all

^(RepeatableText=)(.*)$
replace

Code: Select all

$1

Code: Select all

0
but it is written as $10

and the replace text is written as $10 instead of $1 being the first group, followed by a literal 0


Any ideas?
by 4EverMaAT
Fri Nov 01, 2019 6:29 am
Forum: TextCrawler - General
Topic: Support other regex flavors (PCRE/PCRE2)...
Replies: 1
Views: 6140

Support other regex flavors (PCRE/PCRE2)...

I was curious what made you primarily support .NET regex?

if you intended to support PCRE (PHP) / PCRE2 regex or other regEx flavors, that would be good.

I understand you cannot support them all, but a couple of more popular ones wouldn't be a bad idea.

What do you think?
by 4EverMaAT
Thu Oct 31, 2019 6:01 am
Forum: TextCrawler - General
Topic: Date modified lookback based on current date....
Replies: 1
Views: 5376

Date modified lookback based on current date....

1a) Rather than have strict dates modified (file timestamp) to search between, there should be "files no older than x minutes/hours/days ago" or "files no newer than x minutes/hours/days ago" This allows the file date modified to be "rolling" without having to go in eve...
by 4EverMaAT
Wed Sep 25, 2019 5:40 am
Forum: TextCrawler - General
Topic: Any log history?
Replies: 1
Views: 6750

Any log history?

I was wondering if there is an option to generate a log that would contain datetime stamp of when a find/replace operation is done? Especially when done from command line? I would like option to see just a summary of events - which file filter was used - which folder was searched - subfolders?? - ho...