Re: [PHP] Regexp help second

2005-01-06 Thread Andrew Kreps
On Thu, 06 Jan 2005 13:50:58 +0100, UroÅ Gruber <[EMAIL PROTECTED]> wrote:
> 
> 1) this is some domain.com test
> 2) domain.com
> 
> I can make this work either for first example of fo second, but not for
> both. What I want is replace of domain.com to get
> 
> this is dome domain.com domain com test so replace should be
> \1 \2 \3
> 
> so for second example I did /((.+)\.{1}(.+))/
> 
> How can I extend this to work in both.
> 

Can you explain in a little more detail what you're trying to replace
domain.com with?  I'm having trouble understanding your intentions.  A
regular expression like: /([\w-]+)\.([\w-]+)/ should be able to grab
strings like domain.com in any type of string (I'm using the
preg_replace function).

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



Re: [PHP] Regexp help second

2005-01-06 Thread Richard Lynch
You could maybe cheat and add an X at the beginning and end of the string
before your Regex, then you will have:

X\1 \2 \3X

and you can strip off the initial X from \1 and the trailing X from \3

There's probably some fancy Regexp way to do it though.

Uroš Gruber wrote:
> Hi!
>
> Last help about regexp solve my problem, but I have another one.
>
> I've made some regexp but it does not work always
>
> Let say I have some strings
>
> 1) this is some domain.com test
> 2) domain.com
>
> I can make this work either for first example of fo second, but not for
> both. What I want is replace of domain.com to get
>
> this is dome domain.com domain com test so replace should be
> \1 \2 \3
>
> so for second example I did /((.+)\.{1}(.+))/
>
> How can I extend this to work in both.
>
> regards
>
> Uros
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


-- 
Like Music?
http://l-i-e.com/artists.htm

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



[PHP] Regexp help second

2005-01-06 Thread UroÅ Gruber
Hi!
Last help about regexp solve my problem, but I have another one.
I've made some regexp but it does not work always
Let say I have some strings
1) this is some domain.com test
2) domain.com
I can make this work either for first example of fo second, but not for 
both. What I want is replace of domain.com to get

this is dome domain.com domain com test so replace should be
\1 \2 \3
so for second example I did /((.+)\.{1}(.+))/
How can I extend this to work in both.
regards
Uros
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php