2009-07-04 58 views
8

I've created this regex<a href.. in PHP

(www|http://)[^ ]+ 

that match every http://... or www.... but I dont know how to make preg_replace that would work, I've tried

preg_replace('/((www|http://)[^ ]+)/', '<a href="\1">\1</a>', $str); 

but it doesn't work, the result is empty string.

+0

Dup: http://stackoverflow.com/ sorular/507436/nasıl yapılır-php-in-a-string-with-php ile –

cevap

14

You need to escape the slashes in the regex because you are using slashes as the delimiter. You could also use another symbol as the delimiter.

// escaped 
preg_replace('/((www|http:\/\/)[^ ]+)/', '<a href="\1">\1</a>', $str); 

// another delimiter, '@' 
preg_replace('@((www|http://)[^ ]+)@', '<a href="\1">\1</a>', $str); 
+2

Tebrikler! Yanlış ifadeyi kaostan kopyalayamayan tek kişi sensin. – Gumbo

+1

Otomatik olarak http: // 'dan önce http: //' yı eklemez, bu yüzden tamamen doğru değildir: www.google.com ... instead of

1
preg_replace('!((?:www|http://)[^ ]+)!', '<a href="\1">\1</a>', $str); 

When you use / as your pattern delimiter, having / inside your pattern will not work out well. I solved this by using ! as the pattern delimiter, but you could escape your slashes with backslashes instead.

I also didn't see any reason why you were doing two paren captures, so I removed one of them.

Part of the trouble in your situation is that you're running with warnings suppressed; if you had error_reporting(E_ALL) on, you'd have seen the messages PHP is trying to generate about your delimiter problem in your regex.

+0

En çok sizin örnekleri için yanlış normal ifadenizi kullandı. – Gumbo

+0

Hepimizin OP'leri kopyaladığımızı hayal ediyorum. Her halükarda şimdi düzeltildi. – chaos

1

Your main problem seems to be that you are putting everything in parentheses, so it doesn't know what "\1" is. Also, you need to escape the "/". So try this:

preg_replace('/(www|http:\/\/[^ ]+)/', '<a href="\1">\1</a>', $str);

Edit: It actually seems the parentheses were not an issue, I misread it. The escaping was still an issue as others also pointed out. Either solution should work.

+0

Sadece bu geri başvuruların açılış parantezi ile numaralandırıldığını eklemek istiyorum. Örneğin, regexp "T (e (st))", \ 1 "est" içerir ve \ 2 "st" içerir. –

2

When using the regex codes provided by the other users, be sure to add the "i" flag to enable case-insensitivity, so it'll work with both HTTP:// and http://. For example, using chaos's code:

preg_replace('!(www|http://[^ ]+)!i', '<a href="\1">\1</a>', $str); 
2

First of all, you need to escape—or even better, replace—the delimeters as explained in the other answers.

preg_replace('~((www|http://)[^ ]+)~', '<a href="\1">\1</a>', $str); 

Secondly, to further improve the regex, the $n replacement reference syntax is preferred over \\n, as stated in the manual ile http: // veya www nasıl değiştirilir.

preg_replace('~((www|http://)[^ ]+)~', '<a href="$1">$1</a>', $str); 

Üçüncüsü, gereksiz yere parantezleri kullanarak gereksiz yere paraziti kullanmanız gerekir. Onlardan kurtulmak. $1’u $0’a güncellemeyi unutmayın. Merak ediyorsanız, bunlar yakalama parantezleri değildir: (?:).

preg_replace('~(?:www|http://)[^ ]+~', '<a href="$0">$0</a>', $str); 

Son olarak, \s tersidir daha kısa ve daha doğru \S ile [^ ]+ değiştirmek. [^ ]+'un boşluklara izin vermediğini, ancak yeni satırları ve sekmeleri kabul ettiğini unutmayın! \S yapmıyor. bir dize bir yerine alanı satır sonu ile ayrılmış bulunan çok sayıda URL varsa

preg_replace('~(?:www|http://)\S+~', '<a href="$0">$0</a>', $str); 
1

, sen \ Sı kullanmak zorunda

preg_replace('/((www|http:\/\/)\S+)/', '<a href="$1">$1</a>', $val); 
İlgili konular