Re: [PHP] reg expressions

2005-03-25 Thread Steve Buehler
At 01:50 PM 3/25/2005, you wrote:
Ok.  I am really bad at regular expressions.  I have to search through 
some files and put the contents into an array.  A file could look like this:
$aliases=`cat /home/virtual/site$site_id/fst/etc/mail/local-host-names`;
start of file
# local-host-names - include all aliases for your machine here.
# Please do not add any domain names in this file.
domain.net
domain.com
end of file

In $aliases, I need to ignore the lines that start with a # sign.  It is 
possible, but not probably that it will be more than just the first 2 
lines and possible that it isn't even the first two lines.  After done, 
$aliases should have just the two domain names in it.  One per line.  Then 
I need to loop through the lines in $aliases and do stuff with each 
line.  Any help would be GREATLY appreciated.  It would also be fine to 
just do a loop that checks each line.  Since I guess that would be 
quicker.  If the line starts with a #, then ignore it, otherwise, do some 
other stuff.
Ya know.  You can look all you want, but for some reason, you never find 
what you are looking for until you ask somebody and then keep 
looking.  Anyway, I found the answer.  here it is:
$fc=file(/home/virtual/site$site_id/fst/etc/mail/local-host-names);
$key=#;
foreach($fc as $line){
if(!strstr($line,$key)){
}else{
echo $line;
}
}

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


RE: [PHP] reg expressions

2005-03-25 Thread Chris W. Parker
Steve Buehler mailto:[EMAIL PROTECTED]
on Friday, March 25, 2005 11:50 AM said:

 It would also be fine to just do a loop that checks each line.
 Since I guess that would be quicker.  If the line starts with
 a #, then ignore it, otherwise, do some other stuff.

Yeah do this. You don't need a regular expression in this case. Look at
the string functions in the PHP manual (http://php.net/substr) to find
out how to check what the first character of the line is.

Does that help?


Chris.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] reg expressions

2005-03-25 Thread Matthew Fonda
I wouldnt recommend using a regular expression for this. Regular
expressions most of the time are now the answer. You could just do
something like:

foreach ($line as file('/home/virtual/')) {
if (substr(trim($line), 0, 1) == '#') {
//$line is a comment
} else {
//$line is not a comment
}
}

On Fri, 2005-03-25 at 11:50, Steve Buehler wrote:
 Ok.  I am really bad at regular expressions.  I have to search through some 
 files and put the contents into an array.  A file could look like this:
 $aliases=`cat /home/virtual/site$site_id/fst/etc/mail/local-host-names`;
 start of file
 # local-host-names - include all aliases for your machine here.
 # Please do not add any domain names in this file.
 domain.net
 domain.com
 end of file
 
 In $aliases, I need to ignore the lines that start with a # sign.  It is 
 possible, but not probably that it will be more than just the first 2 lines 
 and possible that it isn't even the first two lines.  After done, $aliases 
 should have just the two domain names in it.  One per line.  Then I need to 
 loop through the lines in $aliases and do stuff with each line.  Any help 
 would be GREATLY appreciated.  It would also be fine to just do a loop that 
 checks each line.  Since I guess that would be quicker.  If the line starts 
 with a #, then ignore it, otherwise, do some other stuff.
 
 Thanks
 Steve
-- 
Regards,
Matthew Fonda
http://mfonda.info

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] reg. expressions

2004-10-13 Thread Matt M.
 on one place I have string something (something_2)
 I have to take out of the string everything in brackets and brackets as
 well.
 probably I will need to use Regular Expression Functions but I'm really
 bad with them :)

$string = something (something_2);
$pattern = /\(.*\)/;
$replacement = ;
echo preg_replace($pattern, $replacement, $string);

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] reg. expressions

2004-10-13 Thread Afan Pasalic
That was fast! :)
Thanks Matt
-afan
Matt M. wrote:
on one place I have string something (something_2)
I have to take out of the string everything in brackets and brackets as
well.
probably I will need to use Regular Expression Functions but I'm really
bad with them :)

$string = something (something_2);
$pattern = /\(.*\)/;
$replacement = ;
echo preg_replace($pattern, $replacement, $string);
.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] reg. expressions

2004-10-13 Thread John Holmes
Matt M. wrote:
on one place I have string something (something_2)
I have to take out of the string everything in brackets and brackets as
well.
probably I will need to use Regular Expression Functions but I'm really
bad with them :)

$string = something (something_2);
$pattern = /\(.*\)/;
$replacement = ;
echo preg_replace($pattern, $replacement, $string);
Just note that if there are two bracketed patterns in a string, this 
will have issues. It may or may not be an issue for you, though, 
depending up on your data.

As an alternative:
$string = something (something_2) something (something_4);
$pattern = '/\([^)]\)/';
//or $pattern = '/\(.*\)/U';
$replacement = '';
echo preg_replace($pattern, $replacement, $string);
Also, if there could be line breaks within the bracketed text, you'll 
need extra modifiers... it all just depends upon your data.

--
---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
php|architect: The Magazine for PHP Professionals  www.phparch.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] reg. expressions

2004-10-13 Thread Afan Pasalic
In my case it will be actually product name (product number) and 
always the same. That means Matt's code will do exactly what I need.
But, thanks for your post - could happen to use that on other place
:)

Thanks John
-afan
John Holmes wrote:
Matt M. wrote:
on one place I have string something (something_2)
I have to take out of the string everything in brackets and brackets as
well.
probably I will need to use Regular Expression Functions but I'm really
bad with them :)

$string = something (something_2);
$pattern = /\(.*\)/;
$replacement = ;
echo preg_replace($pattern, $replacement, $string);

Just note that if there are two bracketed patterns in a string, this 
will have issues. It may or may not be an issue for you, though, 
depending up on your data.

As an alternative:
$string = something (something_2) something (something_4);
$pattern = '/\([^)]\)/';
//or $pattern = '/\(.*\)/U';
$replacement = '';
echo preg_replace($pattern, $replacement, $string);
Also, if there could be line breaks within the bracketed text, you'll 
need extra modifiers... it all just depends upon your data.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] @#$@# Reg Expressions

2001-10-29 Thread Matt Friedman


Try putting a ? after your quantifier for non-greedy matching.

Something like: $the_array=split(A (.*?)/A, $html,-1);

Matt.



- Original Message - 
From: brendan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, October 29, 2001 7:55 PM
Subject: [PHP] @#$@# Reg Expressions


 love em.. right now I hate em..
 
 can someone inform me why the below doesnt work?
 it is intended to strip out all the links in a page and return an array
 .. insanity is just starting to set in..
 
 cheers
 
 $html =GETSITE($url);
 // and put in a new line break behind every anchor tag
 $the_array=spliti(A (.*)/A, $html,-1);
 echo $the_array ;
 foreach($the_array AS $k) echo $k.HR;
 }
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] @#$@# Reg Expressions

2001-10-29 Thread Martin Towell

what something like: $the_array=split(A ([^]*)/A, $html,-1);  ??
so, everything that's not a 

-Original Message-
From: brendan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 30, 2001 1:59 PM
To: [EMAIL PROTECTED]
Subject: [PHP] @#$@# Reg Expressions


thanks but it didnt work either ..  ;)

Matt Friedman wrote:

 Try putting a ? after your quantifier for non-greedy matching.
 
 Something like: $the_array=split(A (.*?)/A, $html,-1);
 
 Matt.
 
 
 
 - Original Message - 
 From: brendan [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Monday, October 29, 2001 7:55 PM
 Subject: [PHP] @#$@# Reg Expressions
 
 
 
love em.. right now I hate em..

can someone inform me why the below doesnt work?
it is intended to strip out all the links in a page and return an array
.. insanity is just starting to set in..

cheers

$html =GETSITE($url);
// and put in a new line break behind every anchor tag
$the_array=spliti(A (.*)/A, $html,-1);
echo $the_array ;
foreach($the_array AS $k) echo $k.HR;
}


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



RE: [PHP] @#$@# Reg Expressions

2001-10-29 Thread Jack Dempsey

ok, are you trying to get the links returned or just split on them? i missed
your original post.
watch your caps as well...

i'd use preg_split also

jack

-Original Message-
From: brendan [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 29, 2001 9:59 PM
To: [EMAIL PROTECTED]
Subject: [PHP] @#$@# Reg Expressions


thanks but it didnt work either ..  ;)

Matt Friedman wrote:

 Try putting a ? after your quantifier for non-greedy matching.

 Something like: $the_array=split(A (.*?)/A, $html,-1);

 Matt.



 - Original Message -
 From: brendan [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Monday, October 29, 2001 7:55 PM
 Subject: [PHP] @#$@# Reg Expressions



love em.. right now I hate em..

can someone inform me why the below doesnt work?
it is intended to strip out all the links in a page and return an array
.. insanity is just starting to set in..

cheers

$html =GETSITE($url);
// and put in a new line break behind every anchor tag
$the_array=spliti(A (.*)/A, $html,-1);
echo $the_array ;
foreach($the_array AS $k) echo $k.HR;
}


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]







--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] @#$@# Reg Expressions

2001-10-29 Thread brendan

martin, jack ..
cheers for the replies

Jack.. I am trying to strip out all links in the page that is between 
the a href and /a
I was using
$html =GETSITE($url);

$the_array=spliti(A (.*)/A, $html,-1); //spliti to avoid any case 
sensitivity.
foreach($the_array AS $k) echo $k.HR;

I had given preg_split a go but just got flummoxed with the need to 
slash everything ..


Martin .. I'd tried that .. but i get an array count of 0 from 
$the_array ..(from $the_array=split(A ([^]*)/A, $html,-1);



echo count($the_array);

Jack Dempsey wrote:

 ok, are you trying to get the links returned or just split on them? i missed
 your original post.
 watch your caps as well...
 
 i'd use preg_split also
 
 jack
 
 -Original Message-
 From: brendan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, October 29, 2001 9:59 PM
 To: [EMAIL PROTECTED]
 Subject: [PHP] @#$@# Reg Expressions
 
 
 thanks but it didnt work either ..  ;)
 
 Matt Friedman wrote:
 
 
Try putting a ? after your quantifier for non-greedy matching.

Something like: $the_array=split(A (.*?)/A, $html,-1);

Matt.



- Original Message -
From: brendan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, October 29, 2001 7:55 PM
Subject: [PHP] @#$@# Reg Expressions




love em.. right now I hate em..

can someone inform me why the below doesnt work?
it is intended to strip out all the links in a page and return an array
.. insanity is just starting to set in..

cheers

$html =GETSITE($url);
// and put in a new line break behind every anchor tag
$the_array=spliti(A (.*)/A, $html,-1);
echo $the_array ;
foreach($the_array AS $k) echo $k.HR;
}


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]





 
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] @#$@# Reg Expressions

2001-10-29 Thread Jack Dempsey

brendan, please clarify: you're trying to strip out all links in the page
that is between
the a href and /a

you're trying to strip out all links and return them?
if so, split won't work.it splits on whatever the pattern is.
if you're trying to get all the links, you could do [this doesn't get a
name which is what you want i think]

preg_match_all(|(a href.*?/a)|,$html,$matches);

look at the preg_match_all page at php.net for info on how to use it


ITE($url);

$the_array=spliti(A (.*)/A, $html,-1); //spliti to avoid any case
sensitivity.
foreach($the_array AS $k) echo $k.HR;

I had given preg_split a go but just got flummoxed with the need to
slash everything ..


Martin .. I'd tried that .. but i get an array count of 0 from
$the_array ..(from $the_array=split(A ([^]*)/A, $html,-1);



echo count($the_array);

Jack Dempsey wrote:

 ok, are you trying to get the links returned or just split on them? i
missed
 your original post.
 watch your caps as well...

 i'd use preg_split also

 jack

 -Original Message-
 From: brendan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, October 29, 2001 9:59 PM
 To: [EMAIL PROTECTED]
 Subject: [PHP] @#$@# Reg Expressions


 thanks but it didnt work either ..  ;)

 Matt Friedman wrote:


Try putting a ? after your quantifier for non-greedy matching.

Something like: $the_array=split(A (.*?)/A, $html,-1);

Matt.



- Original Message -
From: brendan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, October 29, 2001 7:55 PM
Subject: [PHP] @#$@# Reg Expressions




love em.. right now I hate em..

can someone inform me why the below doesnt work?
it is intended to strip out all the links in a page and return an array
.. insanity is just starting to set in..

cheers

$html =GETSITE($url);
// and put in a new line break behind every anchor tag
$the_array=spliti(A (.*)/A, $html,-1);
echo $the_array ;
foreach($the_array AS $k) echo $k.HR;
}


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]







 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]





--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] @#$@# Reg Expressions

2001-10-29 Thread Martin Towell

try this - 

$the_array = spliti(a , $html);
$the_array = preg_grep(/a, $the_array);
foreach($the_array as $k)
  echo ereg_replace(/a.*, , $k).\n;


-Original Message-
From: Jack Dempsey [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 30, 2001 2:30 PM
To: brendan; [EMAIL PROTECTED]
Subject: RE: [PHP] @#$@# Reg Expressions


brendan, please clarify: you're trying to strip out all links in the page
that is between
the a href and /a

you're trying to strip out all links and return them?
if so, split won't work.it splits on whatever the pattern is.
if you're trying to get all the links, you could do [this doesn't get a
name which is what you want i think]

preg_match_all(|(a href.*?/a)|,$html,$matches);

look at the preg_match_all page at php.net for info on how to use it


ITE($url);

$the_array=spliti(A (.*)/A, $html,-1); //spliti to avoid any case
sensitivity.
foreach($the_array AS $k) echo $k.HR;

I had given preg_split a go but just got flummoxed with the need to
slash everything ..


Martin .. I'd tried that .. but i get an array count of 0 from
$the_array ..(from $the_array=split(A ([^]*)/A, $html,-1);



echo count($the_array);

Jack Dempsey wrote:

 ok, are you trying to get the links returned or just split on them? i
missed
 your original post.
 watch your caps as well...

 i'd use preg_split also

 jack

 -Original Message-
 From: brendan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, October 29, 2001 9:59 PM
 To: [EMAIL PROTECTED]
 Subject: [PHP] @#$@# Reg Expressions


 thanks but it didnt work either ..  ;)

 Matt Friedman wrote:


Try putting a ? after your quantifier for non-greedy matching.

Something like: $the_array=split(A (.*?)/A, $html,-1);

Matt.



- Original Message -
From: brendan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, October 29, 2001 7:55 PM
Subject: [PHP] @#$@# Reg Expressions




love em.. right now I hate em..

can someone inform me why the below doesnt work?
it is intended to strip out all the links in a page and return an array
.. insanity is just starting to set in..

cheers

$html =GETSITE($url);
// and put in a new line break behind every anchor tag
$the_array=spliti(A (.*)/A, $html,-1);
echo $the_array ;
foreach($the_array AS $k) echo $k.HR;
}


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]







 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]





--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



Re: [PHP] @#$@# Reg Expressions

2001-10-29 Thread brendan

mate you rock..


Martin Towell wrote:

 try this - 
 
 $the_array = spliti(a , $html);
 $the_array = preg_grep(/a, $the_array);
 foreach($the_array as $k)
   echo ereg_replace(/a.*, , $k).\n;
 
 
 -Original Message-
 From: Jack Dempsey [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, October 30, 2001 2:30 PM
 To: brendan; [EMAIL PROTECTED]
 Subject: RE: [PHP] @#$@# Reg Expressions
 
 
 brendan, please clarify: you're trying to strip out all links in the page
 that is between
 the a href and /a
 
 you're trying to strip out all links and return them?
 if so, split won't work.it splits on whatever the pattern is.
 if you're trying to get all the links, you could do [this doesn't get a
 name which is what you want i think]
 
 preg_match_all(|(a href.*?/a)|,$html,$matches);
 
 look at the preg_match_all page at php.net for info on how to use it
 
 
 ITE($url);
 
 $the_array=spliti(A (.*)/A, $html,-1); //spliti to avoid any case
 sensitivity.
 foreach($the_array AS $k) echo $k.HR;
 
 I had given preg_split a go but just got flummoxed with the need to
 slash everything ..
 
 
 Martin .. I'd tried that .. but i get an array count of 0 from
 $the_array ..(from $the_array=split(A ([^]*)/A, $html,-1);
 
 
 
 echo count($the_array);
 
 Jack Dempsey wrote:
 
 
ok, are you trying to get the links returned or just split on them? i

 missed
 
your original post.
watch your caps as well...

i'd use preg_split also

jack

-Original Message-
From: brendan [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 29, 2001 9:59 PM
To: [EMAIL PROTECTED]
Subject: [PHP] @#$@# Reg Expressions


thanks but it didnt work either ..  ;)

Matt Friedman wrote:



Try putting a ? after your quantifier for non-greedy matching.

Something like: $the_array=split(A (.*?)/A, $html,-1);

Matt.



- Original Message -
From: brendan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, October 29, 2001 7:55 PM
Subject: [PHP] @#$@# Reg Expressions





love em.. right now I hate em..

can someone inform me why the below doesnt work?
it is intended to strip out all the links in a page and return an array
.. insanity is just starting to set in..

cheers

$html =GETSITE($url);
// and put in a new line break behind every anchor tag
$the_array=spliti(A (.*)/A, $html,-1);
echo $the_array ;
foreach($the_array AS $k) echo $k.HR;
}


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]







--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




 
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 
 
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] @#$@# Reg Expressions

2001-10-29 Thread Brad Hubbard

On Tue, 30 Oct 2001 14:47, brendan wrote:
 mate you rock..

You can tell he's an Australian (on ya mate :-)

-- 
Brad Hubbard
Congo Systems
1/286 Bolton Street, Eltham
Victoria, Australia, 3095.
Email: [EMAIL PROTECTED]
Ph: +61-3-94391200
Fax: +61-3-94391255
Mob: +61-419107559

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] @#$@# Reg Expressions

2001-10-29 Thread Martin Towell

Off track - seems like the only ppl awake now are ozzies :)
would I be right?

-Original Message-
From: Brad Hubbard [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 30, 2001 3:11 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] @#$@# Reg Expressions


On Tue, 30 Oct 2001 14:47, brendan wrote:
 mate you rock..

You can tell he's an Australian (on ya mate :-)

-- 
Brad Hubbard
Congo Systems
1/286 Bolton Street, Eltham
Victoria, Australia, 3095.
Email: [EMAIL PROTECTED]
Ph: +61-3-94391200
Fax: +61-3-94391255
Mob: +61-419107559

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



Re: [PHP] @#$@# Reg Expressions

2001-10-29 Thread brendan

or really bloody narky afgani's

Martin Towell wrote:

 Off track - seems like the only ppl awake now are ozzies :)
 would I be right?
 
 -Original Message-
 From: Brad Hubbard [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, October 30, 2001 3:11 PM
 To: [EMAIL PROTECTED]
 Subject: Re: [PHP] @#$@# Reg Expressions
 
 
 On Tue, 30 Oct 2001 14:47, brendan wrote:
 
mate you rock..

 
 You can tell he's an Australian (on ya mate :-)
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] @#$@# Reg Expressions

2001-10-29 Thread Jack Dempsey

or the east coast.only 11:35 here in dc

-Original Message-
From: brendan [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 29, 2001 11:14 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] @#$@# Reg Expressions


or really bloody narky afgani's

Martin Towell wrote:

 Off track - seems like the only ppl awake now are ozzies :)
 would I be right?
 
 -Original Message-
 From: Brad Hubbard [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, October 30, 2001 3:11 PM
 To: [EMAIL PROTECTED]
 Subject: Re: [PHP] @#$@# Reg Expressions
 
 
 On Tue, 30 Oct 2001 14:47, brendan wrote:
 
mate you rock..

 
 You can tell he's an Australian (on ya mate :-)
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] @#$@# Reg Expressions

2001-10-29 Thread Brian White

I am upright and sitting at my desk, but I think
awake is far too generous a description


At 15:21 30/10/2001 +1100, Martin Towell wrote:
Off track - seems like the only ppl awake now are ozzies :)
would I be right?

-Original Message-
From: Brad Hubbard [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 30, 2001 3:11 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] @#$@# Reg Expressions


On Tue, 30 Oct 2001 14:47, brendan wrote:
  mate you rock..

You can tell he's an Australian (on ya mate :-)

--
Brad Hubbard
Congo Systems
1/286 Bolton Street, Eltham
Victoria, Australia, 3095.
Email: [EMAIL PROTECTED]
Ph: +61-3-94391200
Fax: +61-3-94391255
Mob: +61-419107559

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

-
Brian White
Step Two Designs Pty Ltd - SGML, XML  HTML Consultancy
Phone: +612-93197901
Web:   http://www.steptwo.com.au/
Email: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] @#$@# Reg Expressions

2001-10-29 Thread Brad Hubbard

On Tue, 30 Oct 2001 15:14, brendan wrote:
 or really bloody narky afgani's

 Martin Towell wrote:
  Off track - seems like the only ppl awake now are ozzies :)
  would I be right?

No jokes about Tamanians or New South Welshmen though alright?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] @#$@# Reg Expressions

2001-10-29 Thread brendan

Your too late for that ..
recipie boy  (aka speedboy) already had a go at us southerners
I reckon you noreasterners are for it next ..
Im working on finding out where he's from so we can make fun of his state ..
Im working hard..
ill find out..
then the jokes'll be flying..
;)

Brad Hubbard wrote:

 On Tue, 30 Oct 2001 15:14, brendan wrote:
 
or really bloody narky afgani's

Martin Towell wrote:

Off track - seems like the only ppl awake now are ozzies :)
would I be right?

 
 No jokes about Tamanians or New South Welshmen though alright?
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] @#$@# Reg Expressions

2001-10-29 Thread Brad Hubbard

On Tue, 30 Oct 2001 15:27, brendan wrote:
 Your too late for that ..
 recipie boy  (aka speedboy) already had a go at us southerners
 I reckon you noreasterners are for it next ..
 Im working on finding out where he's from so we can make fun of his state
 .. Im working hard..
 ill find out..
 then the jokes'll be flying..
 ;)

I see what you mean... he's not making it easy for you.


$ whos nomicrosoft.org
  [whois.geektools.com]
Query: nomicrosoft.org
Registry:  whois.opensrs.net
Results:
Registrant:
 No Organisation
 No Address
 No City, No State No Zip
 DE

 Domain Name: NOMICROSOFT.ORG
 
 Sponsoring Reseller; for Technical Support
 with respect to this domain contact:
easyDNS Technologies Inc., [EMAIL PROTECTED]
+1.416.535.8672
http://www.easydns.com

 Administrative Contact:
Karotte, Rutsche  [EMAIL PROTECTED]
No Address
No City, No State No Zip
DE
0080 1100333

 Technical Contact:
Karotte, Rutsche  [EMAIL PROTECTED]
No Address
  No City, No State No Zip
DE
0080 1100333
 
 Billing Contact:
Karotte, Rutsche  [EMAIL PROTECTED]
No Address
No City, No State No Zip
DE
0080 1100333
 
 
 Record last updated on 24-Oct-2001.
 Record expires on 21-Oct-2002.
 Record Created on 21-Oct-1999.
 
 Domain servers in listed order:
NS1.EASYDNS.COM   216.220.40.243
NS2.EASYDNS.COM   216.220.40.244
REMOTE1.EASYDNS.COM   64.39.29.212
REMOTE2.EASYDNS.COM   212.100.224.80
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] @#$@# Reg Expressions

2001-10-29 Thread Martin Towell

Here - I'm from NSW, Oz !!! can't make it any harder for you :)

-Original Message-
From: Brad Hubbard [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 30, 2001 3:42 PM
To: brendan; [EMAIL PROTECTED]
Subject: Re: [PHP] @#$@# Reg Expressions


On Tue, 30 Oct 2001 15:27, brendan wrote:
 Your too late for that ..
 recipie boy  (aka speedboy) already had a go at us southerners
 I reckon you noreasterners are for it next ..
 Im working on finding out where he's from so we can make fun of his state
 .. Im working hard..
 ill find out..
 then the jokes'll be flying..
 ;)

I see what you mean... he's not making it easy for you.


$ whos nomicrosoft.org

  [whois.geektools.com]
Query: nomicrosoft.org
Registry:  whois.opensrs.net
Results:
Registrant:
 No Organisation
 No Address
 No City, No State No Zip
 DE

 Domain Name: NOMICROSOFT.ORG
 
 Sponsoring Reseller; for Technical Support
 with respect to this domain contact:
easyDNS Technologies Inc., [EMAIL PROTECTED]
+1.416.535.8672
http://www.easydns.com

 Administrative Contact:
Karotte, Rutsche  [EMAIL PROTECTED]
No Address
No City, No State No Zip
DE
0080 1100333

 Technical Contact:
Karotte, Rutsche  [EMAIL PROTECTED]
No Address

  No City, No State No Zip

DE
0080 1100333
 
 Billing Contact:
Karotte, Rutsche  [EMAIL PROTECTED]
No Address
No City, No State No Zip
DE
0080 1100333
 
 
 Record last updated on 24-Oct-2001.
 Record expires on 21-Oct-2002.
 Record Created on 21-Oct-1999.
 
 Domain servers in listed order:
NS1.EASYDNS.COM   216.220.40.243
NS2.EASYDNS.COM   216.220.40.244
REMOTE1.EASYDNS.COM   64.39.29.212
REMOTE2.EASYDNS.COM   212.100.224.80
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



Re: [PHP] @#$@# Reg Expressions

2001-10-29 Thread Brad Hubbard

On Tue, 30 Oct 2001 15:49, Martin Towell wrote:
 Here - I'm from NSW, Oz !!! can't make it any harder for you :)


And how are things in York St.?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] @#$@# Reg Expressions

2001-10-29 Thread David Robley

On Tue, 30 Oct 2001 14:51, Martin Towell wrote:
 Off track - seems like the only ppl awake now are ozzies :)
 would I be right?

 -Original Message-
 From: Brad Hubbard [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, October 30, 2001 3:11 PM
 To: [EMAIL PROTECTED]
 Subject: Re: [PHP] @#$@# Reg Expressions

 On Tue, 30 Oct 2001 14:47, brendan wrote:
  mate you rock..

 You can tell he's an Australian (on ya mate :-)

Stone the bloody crows, cobber, listen to the [nationality] trying ter 
talk Strine!

As a soon-to-be Kiwi resident, I have to say that I think most of the 
Aotearoans should be awake at this time of day - albeit possibly on their 
way home from work :-0

Cue sheep joke.

-- 
David Robley  Techno-JoaT, Web Maintainer, Mail List Admin, etc
CENTRE FOR INJURY STUDIES  Flinders University, SOUTH AUSTRALIA  

   I know it all. I just can't remember it all at once.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] @#$@# Reg Expressions

2001-10-29 Thread Martin Towell

ARGH!! You, you, missed!! :/


-Original Message-
From: Brad Hubbard [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 30, 2001 3:53 PM
To: Martin Towell; [EMAIL PROTECTED]
Subject: Re: [PHP] @#$@# Reg Expressions


On Tue, 30 Oct 2001 15:49, Martin Towell wrote:
 Here - I'm from NSW, Oz !!! can't make it any harder for you :)


And how are things in York St.?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



Re: [PHP] @#$@# Reg Expressions

2001-10-29 Thread brendan

hans up who else is procrastinating?
;)


Martin Towell wrote:

 ARGH!! You, you, missed!! :/
 
 
 -Original Message-
 From: Brad Hubbard [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, October 30, 2001 3:53 PM
 To: Martin Towell; [EMAIL PROTECTED]
 Subject: Re: [PHP] @#$@# Reg Expressions
 
 
 On Tue, 30 Oct 2001 15:49, Martin Towell wrote:
 
Here - I'm from NSW, Oz !!! can't make it any harder for you :)


 
 And how are things in York St.?
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] @#$@# Reg Expressions

2001-10-29 Thread Brad Hubbard

On Tue, 30 Oct 2001 15:53, brendan wrote:
 hans up who else is procrastinating?
 ;)

My productivity was suckin' pretty badly before all this started anyway.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]