I need to filter text for something like:
tabel 2.1
So it needs to catch that entire piece of text (actually where the word 'table' starts and ends I guess) AND then I want the number (2.1) stored seperately in a variable so I can access it.
help?

$haystack = 'voor een gebruiksfunctie in tabel 2.5 voorschriften zijn'; //example text
$match = '#b(tabel)(s{1})([0-9.]{1,})#'; //(first match the word 'tabel') (second match a single whitespace character) (third match a word which consists of numbers and dots only) -->matches stored in variables ordered in the sequence they are indexed/ started
$replace = "<a href="#" onClick="javascriptwinBRopen('view/table/?tabel_nr=$3', '', 800, 600, 0, 0, 0, 0)">$1$2$3</a>";
return preg_replace($match, $replace, $haystack);
SvaRoX wrote:Wow you still found time to get the regex working despite 10 hours spent on the server slicing people ? tdm-player58793 - gg
#b(tabel)s+([d.]+)#
Who is onlineUsers browsing this forum: No registered users and 0 guests |
Misc
|