Replace
| ID | 224 |
|---|---|
| Link Reference | Not set |
| Link Credits | Not set |
| Link Technical Documentation | Not set |
| PlCodelang | PHP |
| PlGroup | Strings |
| PlItemTitle | Replace |
| Code | // http://php.net/manual/de/function.str-replace.php $str1 = "abc#def"; $str1 = str_replace("#",";",$str1); echo $str1; # Output: abc;def |
| Result Example |