OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // Dart test for testing regular expressions in Dart. | 4 // Dart test for testing regular expressions in Dart. |
5 | 5 |
6 class RegExp2Test { | 6 class RegExp2Test { |
7 static String findImageTag_(String text, String extensions) { | 7 static String findImageTag_(String text, String extensions) { |
8 final re = new RegExp('src="(http://\\S+\\.(${extensions}))"'); | 8 final re = new RegExp('src="(http://\\S+\\.(${extensions}))"'); |
9 print('REGEXP findImageTag_ ' + extensions + ' text: \n' + text); | 9 print('REGEXP findImageTag_ ' + extensions + ' text: \n' + text); |
10 final match = re.firstMatch(text); | 10 final match = re.firstMatch(text); |
(...skipping 12 matching lines...) Expand all Loading... |
23 '''; | 23 '''; |
24 String extensions = 'jpg|jpeg|png'; | 24 String extensions = 'jpg|jpeg|png'; |
25 String tag = findImageTag_(text, extensions); | 25 String tag = findImageTag_(text, extensions); |
26 Expect.equals(true, tag !== null); | 26 Expect.equals(true, tag !== null); |
27 } | 27 } |
28 } | 28 } |
29 | 29 |
30 main() { | 30 main() { |
31 RegExp2Test.testMain(); | 31 RegExp2Test.testMain(); |
32 } | 32 } |
OLD | NEW |