-
Notifications
You must be signed in to change notification settings - Fork 0
/
A_5_1.php
113 lines (79 loc) · 2.97 KB
/
A_5_1.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?php
/**
* 照合(マッチング)
* Created by IntelliJ IDEA.
* User: ryu
* Date: 2013/05/12
* Time: 13:19
* To change this template use File | Settings | File Templates.
*/
// preg_match()での照合
// パターン^¥d{5}(-¥d{4})?$に対して$_POST['zip']
// の値をテストする
if (preg_match('^¥d{5}(-¥d{4})?$', $_POST['zip'])) {
print $_POST['zip'] . ' is a valid US ZIP Code';
}
// パターン<b>[^<]+</b>に対して$htmlの値をテストする
// /がパターンの中にあるので区切り文字は@
$is_bold = preg_match('@<b>[^<]+</b>@', $html);
// preg_match()で補足する
// パターン^¥d{5}(-¥d{4})?$に対して$_POST['zip']
// の値をテストする
if (preg_match('/^¥d{5}(-¥d{4})?$/', $_POST, $matches)) {
// $matches[0]は、zipをまるごと含む
print "$matches[0] is a valid US ZIP Code¥n";
// $matches[1]は、最初のカッコの組みの内部の5桁の数字部分を含む
print "$matches[1] is the five-digit part of the ZIP Code¥n";
// 文字列にそれが記されていれば、ハイフンとZIP+4の数字が$matches[2]に含まれる
if (isset($matches[2])) {
print "The ZIP+4 is $matches[2]";
}
else {
print "There is no ZIP+4";
}
}
// パターン<b>[^<]+</b>に対して$htmlの値をテストする。/がパターンの中にあるので区切り文字は@
$is_bold = preg_match('@<b>[^<]+</b>@', $html, $matches);
if ($is_bold) {
// $matches[1]には太字のタグの内側のものが含まれる
print "The bold text is: $matches[1]";
}
// ネストした括弧で補足する
if (preg_match('/^(¥d{5})(-(¥d{4}))?$/', $_POST['zip'], $matches)) {
print "The beginning of the ZIP Code is : $matches[1]¥n";
// $matches[2]は、2つ目の括弧の組みの中のものを含む
// ハイフンと最後の4つの数字
// $matches[3]は最後の4桁の数だけを含む
if (isset($matches[2])) {
print "The ZIP+4 is: $matches[3]";
}
}
// preg_match_all()で照合
$html = <<<_HTML_
<ul><li>Beef Chow-Fun</li>
<li>Sauteed Pea Shoots</li>
<li>Soy Sauce Noodles</li>
</ul>
_HTML_;
preg_match('@<li>(.*?)</li>@', $html, $matches);
$match_cout = preg_match_all('@<li>(.*?)</li>@', $html, $matches_all);
print "preg_match_all() matched $match_count times." . PHP_EOL;
print "preg_match() array: ";
var_dump($matches);
print "preg_match_all() array: ";
var_dump($matches_all);
// 逆引きを使ってマッチング
$ok_html = "I <b>love</b> shrimp dumplings.";
$bad_html = "I <b>love</i> shrimp dumplings.";
if (preg_match('@<([bi])>.*?</\1>@', $ok_html)) {
print "1 Good for you! (OK, Backreferences)\n";
}
if (preg_match('@<([bi])>.*?</\1>@', $bad_html)) {
print "2 Good for you! (Bad, Backreferences)\n";
}
if (preg_match('@<[bi]>.*?</[bi]>@', $ok_html)) {
print "3 Good for you! (OK, Backreferences)\n";
}
if (preg_match('@<[bi]>.*?</[bi]>@', $bad_html)) {
print "4 Good for you! (Bad, Backreferences)\n";
}