OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 part of "core.dart"; | 5 part of "dart:core"; |
6 | 6 |
7 /** | 7 /** |
8 * A regular expression pattern. | 8 * A regular expression pattern. |
9 * | 9 * |
10 * Regular expressions are [Pattern]s, and can as such be used to match strings | 10 * Regular expressions are [Pattern]s, and can as such be used to match strings |
11 * or parts of strings. | 11 * or parts of strings. |
12 * | 12 * |
13 * Dart regular expressions have the same syntax and semantics as | 13 * Dart regular expressions have the same syntax and semantics as |
14 * JavaScript regular expressions. See | 14 * JavaScript regular expressions. See |
15 * <http://ecma-international.org/ecma-262/5.1/#sec-15.10> | 15 * <http://ecma-international.org/ecma-262/5.1/#sec-15.10> |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 | 82 |
83 /** | 83 /** |
84 * Whether this regular expression is case sensitive. | 84 * Whether this regular expression is case sensitive. |
85 * | 85 * |
86 * If the regular expression is not case sensitive, it will match an input | 86 * If the regular expression is not case sensitive, it will match an input |
87 * letter with a pattern letter even if the two letters are different case | 87 * letter with a pattern letter even if the two letters are different case |
88 * versions of the same letter. | 88 * versions of the same letter. |
89 */ | 89 */ |
90 bool get isCaseSensitive; | 90 bool get isCaseSensitive; |
91 } | 91 } |
OLD | NEW |