Search found 1223 matches

by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: Replacing Into A Different Folder
Replies: 6
Views: 14829

Hi Ed,

We will add the feature in 3 weeks. I will send a post to the forum
then. It's very easy to implement.
For now you may set up some kind of batch script or backup (for
example, Abacre Backup) that may copy changed files into specific
location.
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: is it possible?
Replies: 1
Views: 8386

Try this way:

@.*@\r\n

So .* means any char (including empty char)
and \r\n - new line.

It will work.
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: End of Line string
Replies: 3
Views: 12559

Hi, First of all: \x0d\x0a\x0d (CR,LF,CR) will be in regular expressions: \r\n\r So if you have different combinations, we advise you to use one line in Batch grid for each pair of variants. Secondly here is a solution that works for inserting chars at the top and at the bottom of files: Search for:...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: wid card (replace all)
Replies: 1
Views: 8070

Hi, Sure it's possible: Search for: \A(.*)\Z Replace with: yourtext Where yourtext is your text you want to insert. Note that you may insert new lines in the text as \r\n and any other chars. Very important to put correct modifiers: Modifier S = ON Modifier M = ON Modifier I = ON Modifier G = ON We ...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Log Analyzer
Topic: Batch running ALA for analysis
Replies: 1
Views: 8788

In command line mode ALA always creates a UI Window. 6 years ALA was started as a pure console program. But after one year we stopped development of console program as started development of Windows only program. Since then no one asked us about "pure console mode" without UI window until you asked....
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Log Analyzer
Topic: Define custom log formats?
Replies: 1
Views: 9275

Hi,

Sure you may define any custom log formats. See main.ini file
section. I think it's quite clear and easy. For definition of
parameters see help file. If you need any new parameters: contact
support and we will develop it.
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Log Analyzer
Topic: Advanced Log Analyzer on Win2k3 server
Replies: 1
Views: 10474

What do you mean by "open logfiles"? Please send a zipped sample of
log file to support@abacre.com
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Log Analyzer
Topic: Funny results, especially when comparing with other progs
Replies: 1
Views: 10424

Hi Andrew, > Noticed that all of my Most Common User Paths never include my home > page (index.htm). I figured that it uses a slash (/) to signify the > home page. But some of the other web log analyzers that I use, show > my home page in most of the top user paths. Any ideas why or am I > reading i...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Log Analyzer
Topic: Does it differentiate between Robot Visitors & Humans?
Replies: 1
Views: 8892

Hi, This is a good question. Here is a good tip how to solve it. 1. Note that names of robots defined in "user agent" field of log file. So: 2. Periodically watch "Last 30 visitors paths" report or even a better idea: see "Most common user agents" reports. Set "limit" parameter (number of rows in re...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: Delete similiar instance of text string, but retain other
Replies: 1
Views: 7838

Hi, Yes, this is a usual task for AFR. In your message you gave a sample code (source code) but could you also give a resulting code? (What should it be after replacements). Here are some tips: In order to remove a whole line. "1 EA 4.25" Search for: ^.*?EA.*?\r\n Here are: ^ - begin of line. .*? - ...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: cant get []-a] to work
Replies: 1
Views: 8220

Please write a more detailed message. Which operation do you use:
Find, Replace, Batch replace? In which mode?
If you still did not find a string in files you may send a sample log
file to support@abacre.com and write a sample search for string.
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: Responsiveness
Replies: 1
Views: 8317

Sorry for delay in answer. It's because the program and search module
work in one thread. We already implemented a search in separate thread
but it still requires some testing.
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: replacement of C-identifiers
Replies: 1
Views: 8119

> Any suggestions? That's easy. Search for: (\W)xy(\W) Replace with: $1ab$2 > > Additionally: how can I tell the "batch replace" to ignore all > entries found in C-comments (both multi-line /*...*/ and single line > //) ? > What do you mean ignore? Do you want to remove all comments? Or do you what ...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: Can AFR replace text with text from another part of the doc
Replies: 6
Views: 16883

Hi, It's interesting case. It's possible. I guess in your case you have only one <H1></H1> tag in a web page or at least: you should take data from the first <H1></H1> tag in a page. Is it right? So what final r.e.: Search for: <TITLE>.*</TITLE>(.*)<H1>(.*)</H1> Replace with: <TITLE>$2</TITLE>$1<H1>...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: Can AFR replace text with text from another part of the doc
Replies: 6
Views: 16883

$2 is one of the tricks that seems most of people don't know in r.e. Read the whole page m from the beginning. So if you use () in r.e. then you may call it in "replace with" part of r.e. by using $ and # of position of () So final r.e. for your case will be: Search for: 10\.([1234567890]{2})\.([123...