MySQL regex yerine?

0 Cevap php

Ben blob metin alanları içeren bir tablo var. Bu leke içinde html bir yeri vardır. Html parçalarından biri bir h2 olduğunu. (Diğer bir deyişle aynı bırakarak) ben h2 etiketi bir sözcüğün tüm örneklerini bulmak ister ve başka bir kelime ile değiştirmek.

Örneğin, ben aşağıdaki "Bumbles" ile h2 "wiggles" değiştirmek istiyorum:

Önce:

<h2>This is some wiggles html!</h2>
<p>And here is some more wiggles html that could be ignored</p>
<h2>And this is a decoy h2</h2>

Sonra:

<h2>This is some bumbles html!</h2>
<p>And here is some more wiggles html that could be ignored</p>
<h2>And this is a decoy h2</h2>

Ben endişeleniyorum bir çukur regex ilk h2 sonunda durdurma, ve doğrusu bunun son kapanış ile devam değildir.

Ben kabuk ve phpmyadmin erişebilirsiniz.

0 Cevap