W3cubDocs

/Dart 2

matchAsPrefix method

Match matchAsPrefix (String string, [ int start = 0 ])

Match this pattern against the start of string.

If start is provided, it must be an integer in the range 0 .. string.length. In that case, this patten is tested against the string at the start position. That is, a Match is returned if the pattern can match a part of the string starting from position start. Returns null if the pattern doesn't match.

Implementation

Match matchAsPrefix(String string, [int start = 0]);

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-core/Pattern/matchAsPrefix.html