diff --git a/functions/regex.xml b/functions/regex.xml index 0202a2c1f7..30ed799004 100644 --- a/functions/regex.xml +++ b/functions/regex.xml @@ -22,6 +22,9 @@ split + + spliti + These functions all take a regular expression string as their @@ -199,7 +202,7 @@ echo ereg_replace( "(( )is)", "\\2was", $string ); array regs - This function is identical to ereg save that this ignores + This function is identical to ereg except that this ignores case distinction when matching alphabetic characters. @@ -223,7 +226,7 @@ echo ereg_replace( "(( )is)", "\\2was", $string ); string string - This function is identical to ereg_replace save that + This function is identical to ereg_replace except that this ignores case distinction when matching alphabetic characters. @@ -310,6 +313,31 @@ echo "Month: $month; Day: $day; Year: $year<br>\n"; + + + spliti + split string into array by regular expression case insensitive + + + Description + + array split + string pattern + string string + int limit + + + This function is identical to split except that + this ignores case distinction when matching alphabetic characters. + + + + See also: explode and implode. + + + + +