help PHP regex explode replace character dunk sob :D
okedol:
ane ada 2 masalah nih, hwehehehe
gini, masalah pertama :
function rmSpecialChar($teks){
$a = $teks;
$b = preg_replace("/[^a-z0-9_\-\.]/i","-",$a);
$c = explode("-",$b);
for($d=0;$d<count($c);$d++){
if(trim($c[$d])!="") $e .= $c[$d]." ";
}
$e = strtolower(substr($e,0,strlen($e)-1));
$f = str_replace(" ","-",$e);
return $f;
}tapi ane mau gabungin
jika menemukan karakter tanda (
" ) maka semua teks berubah sesuai kata yg saya pilih
masalah ke dua :misalkan ada kata :
Code:
halo halo halo
apa kabar ?
nah caranya gimana yah menghapus kata setelah 2x enter itu (apa kabar ?), bingung ane
bingung nih, hehe thx
DANNY:
jawaban pertama
$f = str_replace(" ","-",$e);
$g = str_replace('"','CHARACTER_YANG_MAU_DIGANTI',$f);
return $g;jawaban kedua
$text = nl2br($text);
$exploded = explode('<br', $text);
$textawal = $exploded[0];
echo $textawal;seharusnya sih begitu
okedol:
fungsi return buat apa sob ?
DANNY:
Quote from: okedol on September 13, 2011, 02:56:21 PM fungsi return buat apa sob ?
itu kan ane nambahin jawaban ente....
ente buat apa itu returnnya...?
okedol:
Quote from: admin_danny on September 13, 2011, 04:41:05 PM itu kan ane nambahin jawaban ente....
ente buat apa itu returnnya...?
Code:
$f = str_replace(" ","-",$e);
$g = str_replace('"','CHARACTER_YANG_MAU_DIGANTI',$f);
return $g;
kok return $g ?
nggak $f sob ?
nah return ke $g buat apa ?
ane masih bocah sma :(
Navigation