Search found 1223 matches

by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: Merging lines with continuation character and doing replacem
Replies: 3
Views: 13992

Verify that there are not trailing spaced before and after search and replace pairs. I tried first time and it did not work too. But after that I found out there was a trailing space after \Z So finally I got resulting code: SUBFILE EMF147.PUB & KEEP & & INCL SUBWHSE, DATE-ISSUE & IN...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: How can I Delete one "-" in the line.
Replies: 2
Views: 9848

Hi,

Search for:
<a href="(.*)">(.*)-(.*)</a>

Replace with:
<a href="$1">$2 $3</a>
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: 8 Files. Replaces in 4, not in other 4
Replies: 5
Views: 15531

Re: Still not working

Roman, I used mask *.* (and tried *.wme), but still could not make it work. Using the batch process. Below is one of the wme files and the cfg I am using. Maybe you can figure out what I don't have correct? BTW are these files coded in Unicode or not? You may send them directly to support@abacre.co...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: Replacing Into A Different Folder
Replies: 6
Views: 14819

Yes, it's added in v2.0. See main menu - Action - Options - Advanced.
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Log Analyzer
Topic: Directory Filtering
Replies: 6
Views: 18117

Hi,

Your filter description should work. Could you send us a fragment of your log file for testing?
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: Difficulty With Batch Processing
Replies: 1
Views: 9499

Could you send a sample file to support@abacre.com with pharses search for /replace with?
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: wildvards....
Replies: 13
Views: 28702

Hi, In manual it's clearly stated what with wildcards (regular expressions) it's possible to make almost any kind of search and replace. But sure some intelligence (brain shake) is needed to find out a solution. Your case is not an exception. Suppose we have the following source code: [07:00] Mo Di ...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: wildvards....
Replies: 13
Views: 28702

I think it's also possible. Is number of lines in block is fixed? MapOut02 ... MapOut09 So do we always have 02..09? Is the last line of the block is also last line of the file? You may put whole block into Batch replace (sure "Use regular expressions" on Batch replace tab should be selected). For e...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: wildvards....
Replies: 13
Views: 28702

You forgot to place \ before [
It's for char escaping, because [ is a reserved char.

Try:
\[19:00\] Mo Di Mi Do Fr\r\n(.*)MapOut(\d+)=901013(\d+)
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Abacre Restaurant Point of Sale
Topic: No "Use Touch Screen" in the Help
Replies: 1
Views: 8690

We also have other experimental features which are not included in
help. Users are constantly asking for new features so we develop it
sometimes without documenting.
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: wildvards....
Replies: 13
Views: 28702

Hi, Lets do as we normally do with our customers. We should work on the concrete files. Please send to support@abacre.com : * Source file you want to changed. * Resulting file (which you changed manually). Then I will generate you config file for AFR what does the job. You get config file, load it i...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Log Analyzer
Topic: Directory Filtering
Replies: 6
Views: 18117

Yes. If you have one log file for the whole month. Sure it will exclude 11th from the log file. Otherwise if you have for example 4 log files for 4 months it will exclude all 11th from all months. In that case if you want to exclude 11th September you have to add a new line in filter to specify the ...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Log Analyzer
Topic: Most requested pages
Replies: 1
Views: 8837

See menu File - Options - Advanced - Web Page Extensions
So: you have to remove .dll and you need to add .do
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: Have to search through LOTS of files...
Replies: 3
Views: 11142

Hi,

Sure you may exclude folders with AFR.
Go to main menu Action - Options - Advanced - Folders to ignore

So if you add the folder:
c:\test\

It will also ignore all subfolders:
c:\test\aa\
c:\test\bb\

And so on.

To speedup searching instead of *.* mask use *.gas mask.
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Log Analyzer
Topic: Directory Filtering
Replies: 6
Views: 18117

Sorry I made obvious mistake. The correct answer is that the filter: filter=day;not_equals;11;skip_line; will skip all days of month except 11. So if the task is to include all days of month except 11 you should use the filter: filter=day;equals;11;skip_line; which means: if (day == 11) { skip_line }