検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 39 for matches (0.001 sec.)
正規表現によるマッチングを行う 12044
« preg_match_all preg_quote » PHP Manual PCRE 関数 正規表現によるマッチングを行う preg_match (PH ... atch ( string $pattern , string $subject , array &$matches = null , int $flags = 0 , int $offset = 0 ): int | ... 検索するパターンを表す文字列。 subject 入力文字列。 matches matches を指定した場合、検索結果が代入されます。 $ ... にはパターン全体にマッチしたテキストが代入され、 $matches[1] には 1 番目のキャプチャ用サブパターンにマッチし ... 列のオフセットも(バイト単位で)返されます。 これは、 matches の値を配列に変更することに注意してください。 その配 ...
https://man.plustar.jp/php/function.preg-match.html - [similar]
言語タグフィルタがロケールにマッチするかどうかを調べる 11433
« Locale::composeLocale Locale::getAllVariants » PHP Manual Locale 言語タグフィルタがロケールにマ ... ッチするかどうかを調べる Locale::filterMatches locale_filter_matches (PHP 5 >= 5.3.0, PHP 7, PHP ... 8, PECL intl >= 1.0.0) Locale::filterMatches -- locale_filter_matches — 言語タグフィルタがロケー ... 説明 オブジェクト指向型 public static Locale::filterMatches ( string $languageTag , string $locale , bool $can ... onicalize = false ): ? bool 手続き型 locale_filter_matches ( string $languageTag , string $locale , bool $can ...
https://man.plustar.jp/php/locale.filtermatches.html - [similar]
マルチバイト対応の正規表現マッチ 11308
« mb_ereg_search mb_eregi_replace » PHP Manual マルチバイト文字列 関数 マルチバイト対応の正規表現 ... _ereg ( string $pattern , string $string , array &$matches = null ): bool マルチバイト対応の正規表現マッチを行 ... メータ pattern 検索パターン。 string 検索 文字列 。 matches pattern 内のカッコで囲まれた部分文字列にマッチする ... ものが あった場合、第3引数 matches が指定されていると、 配列 matches の要素としてマッ ... 結果が格納されます。 マッチするものがなかった場合、 matches は空の配列となります。 $matches[1] には最初の左括弧 ...
https://man.plustar.jp/php/function.mb-ereg.html - [similar]
マルチバイトをサポートし、大文字小文字を無視した正規表現マッチ 11136
« mb_eregi_replace mb_get_info » PHP Manual マルチバイト文字列 関数 マルチバイトをサポートし、大 ... eregi ( string $pattern , string $string , array &$matches = null ): bool マルチバイトをサポートし、かつ大文字 ... attern 正規表現のパターン string 検索対象の string matches pattern の 括弧で囲まれた部分文字列にマッチする部分 ... が見つかり、 かつ3番目の引数 matches が渡された場合、 マッチした部分が matches 配列に格 ... 納されます。 何もマッチしなかった場合、 matches には空の配列が設定されます。 $matches[1] には、最初 ...
https://man.plustar.jp/php/function.mb-eregi.html - [similar]
繰り返し正規表現検索を行う 10885
« preg_last_error preg_match » PHP Manual PCRE 関数 繰り返し正規表現検索を行う preg_match_all (P ... _all ( string $pattern , string $subject , array &$matches = null , int $flags = 0 , int $offset = 0 ): int | ... チした すべての文字列を、 flags で指定した 順番で、 matches に代入します。 正規表現にマッチすると、そのマッチし ... 検索するパターンを表す文字列。 subject 入力文字列。 matches マッチしたすべての内容を含む、 flags で指定した形式 ... 意味ですので注意してください)。 PREG_PATTERN_ORDER $matches[0] はパターン全体にマッチした文字列の配列、 $match ...
https://man.plustar.jp/php/function.preg-match-all.html - [similar]
Restrict matches to terms that start with the prefix 10619
« SolrQuery::setTermsMinCount SolrQuery::setTermsReturnRaw » PHP Manual SolrQuery Restrict matches ... olr >= 0.9.2) SolrQuery::setTermsPrefix — Restrict matches to terms that start with the prefix 説明 public So ... TermsPrefix ( string $prefix ): SolrQuery Restrict matches to terms that start with the prefix パラメータ pre ... fix Restrict matches to terms that start with the prefix 戻り値 Returns ... e return value is used. 関連キーワード: Restrict , matches , terms , SolrQuery , that , setTermsPrefix , setT ...
https://man.plustar.jp/php/solrquery.settermsprefix.html - [similar]
マルチバイト文字列にコールバック関数を用いた正規表現による置換を行う 8959
« mb_ereg_match mb_ereg_replace » PHP Manual マルチバイト文字列 関数 マルチバイト文字列にコールバ ... " ; // the callback function function next_year ( $matches ) { // as usual: $matches[0] is the complete match ... // $matches[1] the match for the first subpattern // enclosed ... in '(...)' and so on return $matches [ 1 ].( $matches [ 2 ]+ 1 ); } echo mb_ereg_replac ... e_callback ( "(\d{2}/\d{2}/)(\d{4})" , function ( $matches ) { return $matches [ 1 ].( $matches [ 2 ]+ 1 ); } ...
https://man.plustar.jp/php/function.mb-ereg-replace-callback.html - [similar]
正規表現検索を行い、コールバック関数を使用して置換を行う 8912
« preg_replace_callback_array preg_replace » PHP Manual PCRE 関数 正規表現検索を行い、コールバッ ... クのシグネチャは、次のとおりです。 handler ( array $matches ): string preg_replace_callback() 用の callback 関 ... preg_replace_callback ( '|<p>\s*\w|' , function ( $matches ) { return strtolower ( $matches [ 0 ]); }, $line ... ATCHED_AS_NULL の組み合わせが指定できます。 これは matches 配列のフォーマットに影響します。 詳細は preg_match ... した\n" ; // コールバック関数 function next_year ( $matches ) { // 通常は、$matches[0] がマッチした全体を表しま ...
https://man.plustar.jp/php/function.preg-replace-callback.html - [similar]
定義済み定数 8395
« リソース型 例 » PHP Manual PCRE 定義済み定数 定義済み定数 以下の定数が定義されています。 この関 ... 。 PREG 定数 定数 説明 使用可能 PREG_PATTERN_ORDER $matches[0] はパターン全体にマッチした文字列の配列、 $match ... g_match_all() でのみ使用されます。 PREG_SET_ORDER $matches[0] は 1 回目のマッチングでキャプチャした値の配列、 ... $matches[1] は 2 回目のマッチングでキャプチャした値の配列、 ... 関数で マッチしなかったサブパターンがあった場合に、 $matches に null を入れることで伝えます。 このフラグがないと ...
https://man.plustar.jp/php/pcre.constants.html - [similar]
正規表現検索を行い、コールバック関数を使用して置換を行う 8316
« preg_quote preg_replace_callback » PHP Manual PCRE 関数 正規表現検索を行い、コールバック関数を ... ATCHED_AS_NULL の組み合わせが指定できます。 これは matches 配列のフォーマットに影響します。 詳細は preg_match ... nction ( $match ) { echo strlen ( $match [ 0 ]), ' matches for "a" found' , PHP_EOL ; }, '~[b]+~i' => functio ... n ( $match ) { echo strlen ( $match [ 0 ]), ' matches for "b" found' , PHP_EOL ; } ], $subject ); ?> 上の ... 例の出力は以下となります。 6 matches for "a" found 3 matches for "b" found 参考 PCRE の ...
https://man.plustar.jp/php/function.preg-replace-callback-array.html - [similar]
PREV 1 2 3 4 NEXT