Re: -e and UNCs

2001-01-27 Thread Paul Popour
- Original Message - From: "Martin James S" <[EMAIL PROTECTED]> To: "Perl-Win32-Users Mailing List E-mail 2" <[EMAIL PROTECTED]> Sent: Friday, January 26, 2001 4:20 PM Subject: -e and UNCs > Do the dash -e file tests work on UNCs? > > for example > > if (-e "//serverbob/c$/file.txt") > >

Re: [OT] autentification

2001-01-27 Thread Sisyphus
Hi Nikola, If you're talking about the situation where a pop-up box appears requesting username and password, this is usually nothing to do with perl or any other cgi script - try looking for some info on '.htaccess' ( I haven't got any good links on that, off hand). The situation where you are co

Re: Parsing a logfile

2001-01-27 Thread Ron Grabowski
use strict; use Data::Dumper; my %hash; OUTSIDE: while ( ) { if ( /^-/ ) { my($name) = $_ =~ /BEGIN (.+?) -/; while ( ) { redo OUTSIDE if /^-/; next if $_ != /^some/; chomp $_, push @{$hash{$name}}, [ $_ ]; } } } print Dumper \%hash; __DATA__ ---

Re: Is it work for for RegExp?

2001-01-27 Thread Carl Jolley
On Sat, 27 Jan 2001, Joe Schell wrote: > > > [EMAIL PROTECTED] wrote: > > > > Hi, > > Can you help please? > > I need to find a substring that starts at a certain position. But if this > > position is a letter the substring must be the whole word and starts > > at a space. > > > > Example: >

Re: [OT] autentification

2001-01-27 Thread Carl Jolley
On Sat, 27 Jan 2001, Nikola Knezevic wrote: > Hi, > I'm interested how is the user-autentification done on the sites?? > TM: Per(l:))son A opens the page www.someserver.com/index.html and sees a > form with NAME and PASSWORD fields. Than that person fills the form and > submits it. If he/she is

Re: Help with finding text layers in Photoshop psd files.

2001-01-27 Thread Jose Quesada
Gary Montgomery wrote: > > > Hi all- > > A co-worker of mine needs to extract all the text (from their own > layers) from ~2000 Photoshop psd (binary) files > and preferably be able to replace the text latter (after being > translated). My perl skills have become rusty and even when I was > ont

RE: Is it work for for RegExp?

2001-01-27 Thread Carl Jolley
On Fri, 26 Jan 2001 [EMAIL PROTECTED] wrote: > Like this? > > == > $string = 'This is an example. I need to find a substring'; > $position = 9; > ($substring) = $string =~ /.{0,$position}( .*)/; > print $substring; > == > > > -Original Message-