Dart API Reference
dart:core
Pattern
Pattern
class
An interface for basic searches within strings.
An interface for basic searches within strings.
Implementors
RegExp
String
Constructors
Pattern
( )
Instance Methods
allMatches
(
String
string
, [
int
start
=
0
] ) →
Iterable
<
Match
>
Match this pattern against the string repeatedly.
matchAsPrefix
(
String
string
, [
int
start
=
0
] ) →
Match
Match this pattern against the start of string.