_str-replace
パターンにマッチした文字列を置き換えます。
引数 | 型 | 初期値 | 説明 |
---|---|---|---|
| |||
$string | String | 置き換えられる文字列 | |
$search | String | マッチする文字列 | |
$replacement | String | '' | 置換文字列 |
文字列の置換
$string: 'takamoso';
@debug _str-replace($string, 'a');
// => tkmoso
@debug _str-replace($string, 'a', 'o');
// => tokomoso