約3,160件1ページ目

条件を指定して検索しています。すべての条件を解除する

  • 最終更新日:1年以内
  • 2023/12/19 -At its core, the preg_replace() function is a versatile tool in PHP used for searching and replacing text using regular expressions. Unlike simpler string ...

    2024/5/6 -preg_replace関数はマッチした文字列を指定した文字列に置換することができます。 基本構文. preg_replace('/パターン/','置換する文字列', '置換 ...

    2024/2/4 -ereg_replace deprecated. Some older functions were removed from PHP. The ereg series can usually be replaced with a preg ...

    2024/4/29 -In this approach, we are using the preg_replace function with a regular expression to match the pattern and remove punctuation characters from the string. The ...

    2023/6/11 -preg_replace($pattern, $replacement, $subject) ... format, etc. For example: // Validate an email address function ... // Format a date string in YYYY-MM-DD format

    2024/5/6 -... preg_replace関数」の使い方・正規表現を指定してマルチバイト文字列を置換する「mb_ereg_replace」関数の使い方. などの使い方について解説していきます。 今回は ...

    2024/1/11 -Format NPWP PHP/Laravel. Raw. npwp_format.php. <?php. $var = 999999999999999; // Nomor NPWP. preg_replace(. "~.*(\d{2})[^\d]{0,7}(\d{3})[^\d]{0,7}(\d{3})(\d ...

    2024/5/30 -In this tutorial, we will explore how to change the format of the value input using the intl-tel-input library in combination with Livewire. By default, intl- ...

    2024/4/21 -PHP provides the following built-in functions for string replacement: str_replace(); str_ireplace(); preg_replace(); substr_replace(); mb_ereg_replace() ...

    2024/3/27 -... preg_replace() を使うと良いと思います。 str_replace() 【文字列を文字列に置換 ※日本語OK】. str_replace()の使い方. 書式. str_replace( $search, $replace, $subject ...