Search found 1223 matches

by Abacre
Sun Feb 06, 2005 9:57 pm
Forum: Advanced Find and Replace
Topic: Need help with a find and replace expression - tks -
Replies: 2
Views: 8673

Hi, There can be a plenty different variants. For example one of them: Go to Batch replace, enable "Use regular expressions". Put into search for: "keyword"(\s*)value="(\S*) (.*)" Replace with: "keyword"$1value="$2+$3" Then press Execute button 5 times (as far as you have up to 6 keywords). I verifi...
by Abacre
Wed Feb 02, 2005 7:05 pm
Forum: Advanced Find and Replace
Topic: Search and replace variables!
Replies: 4
Views: 13566

Thanks for the prompt reply. I have tried your solution but it did not work. Because you said it's :\\servername : in your source text. Well in this case it could be done even without regular expressions. Because you have very formal string: :space\\servername\ So disable "Use regular expressions" ...
by Abacre
Wed Feb 02, 2005 7:52 am
Forum: Advanced Find and Replace
Topic: Search and replace variables!
Replies: 4
Views: 13566

Go to Batch replace, check on "Use regular expressions"

Put Search for:
(\w+:\\\\)oldname(:\w+)

Replace with:
$1newname$2

where is oldname is old name of the server.
by Abacre
Tue Feb 01, 2005 8:48 pm
Forum: Advanced Log Analyzer
Topic: Trying to limit visitors per day report to a netwrok segmant
Replies: 1
Views: 12301

Hi, Please verify that Incremental Analysis is off (so no cache file will be generated). Secondly, about the filters: filter=ip;includes;137.1.201. filter=ip;includes;137.1.202. filter=ip;includes;137.1.203. filter=ip;includes;137.1.207. filter=ip;includes;137.1.210. filter=ip;includes;137.1.80. fil...
by Abacre
Tue Feb 01, 2005 4:54 pm
Forum: General Announces
Topic: Forum recovered
Replies: 0
Views: 52927

Forum recovered

Hello,

Due to some electricity problems most of messages were lost on hosting
provider. But they are recovered now.
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: General Announces
Topic: General Announces rules
Replies: 0
Views: 50862

General Announces rules

Only moderators can post in this forum.
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Log Analyzer
Topic: How do "Hits" and "Downloads" differ?
Replies: 2
Views: 12378

Re: How do "Hits" and "Downloads" differ

I have a "Basic" report. Parameter = href. In the report output I get "Hits" and "Downloads". What is the difference? Hits is always the larger number. "Hits" - number of requests. For example if you have test.zip file on your web site. People may request the file but did not download it. "Download...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: HELP , need to replace numbers
Replies: 1
Views: 8476

Hi,

I think that it's possible to do with regular expressions. But please give a detailed example.

For example, "before" file and "after" file.
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: Regular expression is NOT working...
Replies: 2
Views: 9440

Hi Stefano, It's corrected now. Please download latest beta version of the program: m This is only updated EXE file. You need to extract executable file from zip archive into folder where the program is installed. So you will replace old executable file by this new one. Tell me does it work now?
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: Regular Expression Searches
Replies: 4
Views: 12265

Re: Regular Expression Searches

It doesn't seem that regular expressions work at all. I have tested My regular expressions using RegExBuilder (a .net app) and they are correct. I am using the replace function and searching for: When I run these on test files using AFR they never find a match. What's the deal? Is there somewhere i...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: Next upgarde to AFR due ... ?
Replies: 1
Views: 7902

Hi, We constantly (several times a week) make new builds. So you may download latest version from the following location: m This is only updated EXE file. You need to extract executable file from zip archive into folder where the program is installed. So you will replace old executable file by this ...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: Wildcard find & replace??
Replies: 2
Views: 10368

It's pretty easy:

Search for:
MyVar1 = (.*);.*MyVar2 = (.*);

Replace with:
myFunc1 ($1, $2);

I verified and it works well.

Be sure that "S" modifier is ON.
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: Wildcard find & replace??
Replies: 2
Views: 10368

BTW, it will be wiser to use

Search for:
MyVar1.*=.*(.*);.*MyVar2.*=.*(.*);

So you don't cafe about spaces.
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: how do i ignore ""
Replies: 2
Views: 9120

Please send your configuration file (default.cfg) to support@abacre.com About which operation you are talking about? Replace or Batch replace? If you are really talking about Replace operation than it's not a problem with "". Rather verify: do you have trading spaces, new line chars after your searc...
by Abacre
Mon Jan 31, 2005 5:32 pm
Forum: Advanced Find and Replace
Topic: Two character line deletion with quotation mark
Replies: 1
Views: 9150

Hi pdo,

The correct "search for" is the following:
">\r\n

"replace with" should be empty.

I tried it few minutes ago and it works perfectly.