検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 76 for PCRE (0.007 sec.)
デリミタ 6649
« はじめに メタ文字 » PHP Manual PCRE 正規表現構文 デリミタ デリミタ PCRE 関数を使うときには、パ ... , 文字 , パターン , エスケープ , pattern , 形式 , PCRE , 関数 , マッチ , 終了 ...
https://man.plustar.jp/php/regexp.reference.delimiters.html - [similar]
文字クラス 6607
« ドット 選択肢 » PHP Manual PCRE 正規表現構文 文字クラス 文字クラス 開き角カッコは文字クラス (c ... A" にマッチしませんが、 区別する場合はマッチします PCRE_DOTALL または PCRE_MULTILINE オプションをどのように ... [: と :] で囲んだ名前を角カッコ内で使うものです。 PCRE でもこの記法に対応しています。たとえば [01[:alpha: ... コードはどの POSIX 文字クラスにもマッチしません。 libpcre 8.10 以降では、 いくつかの文字クラスが Unicode 文字 ... は、ここに挙げた制約はあてはまりません。 詳細は、 » PCRE(3) のマニュアル を参照ください。 Unicode 文字プロパ ...
https://man.plustar.jp/php/regexp.reference.character-classes.html - [similar]
正規表現検索を行い、コールバック関数を使用して置換を行う 6566
« preg_quote preg_replace_callback » PHP Manual PCRE 関数 正規表現検索を行い、コールバック関数を ... matches for "a" found 3 matches for "b" found 参考 PCRE のパターン preg_replace_callback() - 正規表現検索を ... 表現検索および置換を行う preg_last_error() - 直近の PCRE 正規表現処理のエラーコードを返す 無名関数 関連キー ...
https://man.plustar.jp/php/function.preg-replace-callback-array.html - [similar]
新しいグローバル定数 6566
« 新しいクラスおよびインターフェイス SAPI モジュールの変更 » PHP Manual PHP 5.6.x から PHP 7.0.x ... PERTY_NAME JSON_ERROR_UTF16 LibXML LIBXML_BIGLINES PCRE PREG_JIT_STACKLIMIT_ERROR POSIX POSIX_RLIMIT_AS PO ... モジュール , 変更 , 移行 , コア , 定義 , LibXML , PCRE ...
https://man.plustar.jp/php/migration70.constants.html - [similar]
その他の変更 6524
« 削除された拡張モジュール Windows のサポート » PHP Manual PHP 7.3.x から PHP 7.4.x への移行 その ... --with-openssl は、ディレクトリを受け入れません。 PCRE: --with-pcre-regex オプションは削除されました。 代 ... わりに、バンドルされたものではなく、外部のPCREライブラリを使うために --with-external-pcre が提供さ ... グ filter 拡張機能は、 Unix でビルドする際に --with-pcre-dir が不要になり、 ./configure コマンドで共有ライブ ...
https://man.plustar.jp/php/migration74.other-changes.html - [similar]
正規表現によるマッチングを行う 6441
« preg_match_all preg_quote » PHP Manual PCRE 関数 正規表現によるマッチングを行う preg_match (PH ... ょう。 strpos() 関数を使うほうが速くなります。 参考 PCRE のパターン preg_quote() - 正規表現文字をクオートす ... 規表現で文字列を分割する preg_last_error() - 直近の PCRE 正規表現処理のエラーコードを返す preg_last_error_m ... sg() - 最後に実行した PCRE 正規表現に関するエラーメッセージを返す 関連キーワー ...
https://man.plustar.jp/php/function.preg-match.html - [similar]
正規表現検索および置換を行う 6441
« preg_replace_callback preg_split » PHP Manual PCRE 関数 正規表現検索および置換を行う preg_repl ... うパターン。文字列もしくは配列とすることができます。 PCRE 修飾子 も使えます。 replacement 置換を行う文字列も ... 、各配列に対し ksort() を実行しておくべきです。 参考 PCRE のパターン preg_quote() - 正規表現文字をクオートす ... 規表現で文字列を分割する preg_last_error() - 直近の PCRE 正規表現処理のエラーコードを返す 関連キーワード: 置 ...
https://man.plustar.jp/php/function.preg-replace.html - [similar]
繰り返し正規表現検索を行う 6400
« preg_last_error preg_match » PHP Manual PCRE 関数 繰り返し正規表現検索を行う preg_match_all (P ... 付ける(貪欲) <?php // \\2 は後方参照の例。これは、pcre に正規表現中の括弧の 2 番目の // 組、つまりこの場合 ... [2] => Array ( [0] => 1 [1] => 2 [2] => 3 ) ) 参考 PCRE のパターン preg_quote() - 正規表現文字をクオートす ... 規表現で文字列を分割する preg_last_error() - 直近の PCRE 正規表現処理のエラーコードを返す 関連キーワード: A ...
https://man.plustar.jp/php/function.preg-match-all.html - [similar]
正規表現で文字列を分割する 6400
« preg_replace ssdeep » PHP Manual PCRE 関数 正規表現で文字列を分割する preg_split (PHP 4, PHP 5 ... の要素の内容は、入力文字列そのままになります。 参考 PCRE のパターン preg_quote() - 正規表現文字をクオートす ... 表現検索および置換を行う preg_last_error() - 直近の PCRE 正規表現処理のエラーコードを返す 関連キーワード: 分 ...
https://man.plustar.jp/php/function.preg-split.html - [similar]
正規表現検索を行い、コールバック関数を使用して置換を行う 6317
« preg_replace_callback_array preg_replace » PHP Manual PCRE 関数 正規表現検索を行い、コールバッ ... seTagsRecursive ( $input ); echo $output ; ?> 参考 PCRE のパターン preg_replace_callback_array() - 正規表現 ... 表現検索および置換を行う preg_last_error() - 直近の PCRE 正規表現処理のエラーコードを返す 無名関数 関連キー ...
https://man.plustar.jp/php/function.preg-replace-callback.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT