PHP/正規表現
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(PHP/正規表現);
*目次 [#l2b4dbbe]
#contents
*関連ページ [#ie0c99fa]
*参考情報 [#h78fc7a9]
*文字列のマッチ [#n27e6b4d]
-preg_matchを使用する
-perlのように$1、$2などに変数は自動的にキャプチャされない...
preg_match($pattern, $str, $match)
-$match[0]、$match[1]というふうに使う。
*文字列分割 [#y3b8803f]
-preg_splitを使う。[[PHP: preg_split - Manual:http://www....
#pre{{
<?php
// 空白文字で分割
$keywords = preg_split("/[\s,]+/", "hypertext language, p...
print_r($keywords);
?>
}}
終了行:
&tag(PHP/正規表現);
*目次 [#l2b4dbbe]
#contents
*関連ページ [#ie0c99fa]
*参考情報 [#h78fc7a9]
*文字列のマッチ [#n27e6b4d]
-preg_matchを使用する
-perlのように$1、$2などに変数は自動的にキャプチャされない...
preg_match($pattern, $str, $match)
-$match[0]、$match[1]というふうに使う。
*文字列分割 [#y3b8803f]
-preg_splitを使う。[[PHP: preg_split - Manual:http://www....
#pre{{
<?php
// 空白文字で分割
$keywords = preg_split("/[\s,]+/", "hypertext language, p...
print_r($keywords);
?>
}}
ページ名: