regexp-property-scripts.js 1.68 KB
Newer Older
1 2 3 4 5 6 7
// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

function t(re, s) { assertTrue(re.test(s)); }
function f(re, s) { assertFalse(re.test(s)); }

8 9
t(/\p{Script=Common}+/u, ".");
f(/\p{Script=Common}+/u, "supercalifragilisticexpialidocious");
10

11 12 13 14
t(/\p{Script=Han}+/u, "话说天下大势,分久必合,合久必分");
t(/\p{Script=Hani}+/u, "吾庄后有一桃园,花开正盛");
f(/\p{Script=Han}+/u, "おはようございます");
f(/\p{Script=Hani}+/u, "Something is rotten in the state of Denmark");
15

16 17
t(/\p{Script=Latin}+/u, "Wie froh bin ich, daß ich weg bin!");
t(/\p{Script=Latn}+/u,
18
  "It was a bright day in April, and the clocks were striking thirteen");
19 20
f(/\p{Script=Latin}+/u, "奔腾千里荡尘埃,渡水登山紫雾开");
f(/\p{Script=Latn}+/u, "いただきます");
21

22 23 24
t(/\p{sc=Hiragana}/u, "いただきます");
t(/\p{sc=Hira}/u, "ありがとうございました");
f(/\p{sc=Hiragana}/u,
25
  "Als Gregor Samsa eines Morgens aus unruhigen Träumen erwachte");
26
f(/\p{sc=Hira}/u, "Call me Ishmael");
27

28 29 30 31
t(/\p{sc=Phoenician}/u, "\u{10900}\u{1091a}");
t(/\p{sc=Phnx}/u, "\u{1091f}\u{10916}");
f(/\p{sc=Phoenician}/u, "Arthur est un perroquet");
f(/\p{sc=Phnx}/u, "设心狠毒非良士,操卓原来一路人");
32

33 34 35 36
t(/\p{sc=Grek}/u, "ἄνδρα μοι ἔννεπε, μοῦσα, πολύτροπον, ὃς μάλα πολλὰ");
t(/\p{sc=Greek}/u, "μῆνιν ἄειδε θεὰ Πηληϊάδεω Ἀχιλῆος");
f(/\p{sc=Greek}/u, "高贤未服英雄志,屈节偏生杰士疑");
f(/\p{sc=Greek}/u,
37
  "Mr. Jones, of the Manor Farm, had locked the hen-houses for the night");