Re: [PHP] remove first character in text file

2004-11-24 Thread Dustin Krysak
Just want to add to this with a little more info
my text file is a list of email addresses with a % separating them. 
For example:

[EMAIL PROTECTED]@[EMAIL PROTECTED]
Now sometimes I end up with a % at the beginning. For example:
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Or:
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Now that causes me issues else where in the script. So what I need to 
do is check if the % character exists at the beginning of the file 
and remove any if the % is there.

ideas?
d


Hi there.. I have a text file where I need to remove JUST the
first character in the text file. Can anyone point me to a tutorial?
d

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


RE: [PHP] remove first character in text file

2004-11-24 Thread Robinson, Matthew

?php
$email =  '[EMAIL PROTECTED]@[EMAIL PROTECTED]';
$email = preg_replace('/^%%+/','%',$email);
print $email;
?


-Original Message-
From: Dustin Krysak [mailto:[EMAIL PROTECTED] 
Sent: 24 November 2004 09:53
To: PHP
Subject: Re: [PHP] remove first character in text file

Just want to add to this with a little more info

my text file is a list of email addresses with a % separating them. 
For example:

[EMAIL PROTECTED]@[EMAIL PROTECTED]

Now sometimes I end up with a % at the beginning. For example:

[EMAIL PROTECTED]@[EMAIL PROTECTED]

Or:
[EMAIL PROTECTED]@[EMAIL PROTECTED]

Now that causes me issues else where in the script. So what I need to do
is check if the % character exists at the beginning of the file and
remove any if the % is there.

ideas?

d




 Hi there.. I have a text file where I need to remove JUST the first 
 character in the text file. Can anyone point me to a tutorial?

 d




This message has been checked for all known viruses by the 
CitC Virus Scanning Service powered by SkyLabs. For further information visit
http://www.citc.it

___

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



RE: [PHP] remove first character in text file

2004-11-23 Thread Mike
Start with fopen() - http://us2.php.net/manual/en/function.fopen.php

Then use fread() - http://us2.php.net/manual/en/function.fread.php

There's many user-contributed comments that should be of use. The docs are
also quite helpful.

-M

 Hi there.. I have a text file where I need to remove JUST the 
 first character in the text file. Can anyone point me to a tutorial?
 
 d
 

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