Re: [PHP] multiple replaces...

2002-01-12 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * On 12-01-02 at 12:49 * Lauri Vain said Hello there, I have about 30 markers in the text which need to be replaced with the value of a variable or an array. Common sense comes up with

RE: [PHP] multiple replaces...

2002-01-12 Thread Lauri Vain
:[EMAIL PROTECTED]] Sent: 12. jaanuar 2002. a. 13:53 To: [EMAIL PROTECTED] Subject: Re: [PHP] multiple replaces... If the 'markers' are in some kind of sequence (like marker1, marker2 etc) you could use a loop. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] multiple replaces...

2002-01-12 Thread 'Nick Wilson'
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * On 12-01-02 at 13:02 * Lauri Vain said Hi Nick, Yes, I thought about that. But, what should I do when the markers are absolutely NOT in any sequence. I also thought about something like $replace[1][1] = !one!; //marker

Re: [PHP] multiple replaces...

2002-01-12 Thread DL Neil
Yes, I thought about that. But, what should I do when the markers are absolutely NOT in any sequence. =sequence would matter if it was possible that one of the markers could replace some text and that replacement subsequently became the marker for a further replacement ... nightmare=recursion!

Re: [PHP] multiple replaces...

2002-01-12 Thread [EMAIL PROTECTED]
No need to loop. str_replace() already supports arrays! check the manual. bvr. On Sat, 12 Jan 2002 12:57:10 -, DL Neil wrote: Yes, I thought about that. But, what should I do when the markers are absolutely NOT in any sequence. =sequence would matter if it was possible that one of the

Re: [PHP] multiple replaces... (2)

2002-01-12 Thread [EMAIL PROTECTED]
And so does preg_replace() if you need any regular expressions. Though str_replace() is probably faster when this is not the case. http://www.php.net/manual/en/function.str-replace.php http://www.php.net/manual/en/function.preg-replace.php bvr. -- PHP General Mailing List

Re: [PHP] multiple replaces...

2002-01-12 Thread Victor Boivie
like foos and bars; $string = strtr($string, $foo); echo $string; output: I like apples and bananas // Victor - Original Message - From: 'Nick Wilson' [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, January 12, 2002 1:17 PM Subject: Re: [PHP] multiple replaces

Re: [PHP] multiple replaces...

2002-01-12 Thread Paul Roberts
have a look at eval() Paul Roberts [EMAIL PROTECTED] From: Lauri Vain [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, January 12, 2002 11:44 AM Subject: [PHP] multiple replaces... Hello there, I have about 30 markers in the text which need to be replaced with

Re: [PHP] multiple replaces...

2002-01-12 Thread Dennis Moore
try str_replace() ... it allows you to pass an array into the replace function. /dkm - Original Message - From: Paul Roberts [EMAIL PROTECTED] To: Lauri Vain [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Saturday, January 12, 2002 4:35 PM Subject: Re: [PHP] multiple replaces... have

Re: [PHP] multiple replaces...

2002-01-12 Thread Rambo Amadeus
- Original Message - From: Dennis Moore [EMAIL PROTECTED] To: Paul Roberts [EMAIL PROTECTED]; Lauri Vain [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: 12. siječanj 2002 23:33 Subject: Re: [PHP] multiple replaces... try str_replace() ... it allows you to pass an array into the replace