blob: ad1a3d67ddbfcf1bffb9d79a919dd81814a3f4ac [file] [log] [blame]
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/// @assertion String splitMapJoin(
/// Pattern pattern, {
/// String onMatch(
/// Match match
/// ),
/// String onNonMatch(
/// String nonMatch
/// )
/// })
/// Splits the string, converts its parts, and combines them into a new string.
///
/// pattern is used to split the string into parts and separating matches.
///
/// Each match is converted to a string by calling onMatch. If onMatch is
/// omitted, the matched string is used.
///
/// Each non-matched part is converted by a call to onNonMatch. If onNonMatch is
/// omitted, the non-matching part is used.
///
/// Then all the converted parts are combined into the resulting string.
/// @description Checks that this method works as expected with onNonMatch and
/// onMatch specified
/// @author sgrekhov@unipro.ru
import "../../../Utils/expect.dart";
main() {
Expect.equals("-+-+-", "11231233".splitMapJoin("2",
onMatch: (m) => "+", onNonMatch: (m) => "-"));
Expect.equals("-+-+-", "11231233".splitMapJoin(new RegExp("2"),
onMatch: (m) => "+", onNonMatch: (m) => "-"));
Expect.equals("no+no+no+no", "11 23 12 33".splitMapJoin(new RegExp("\\s"),
onMatch: (m) => "+", onNonMatch: (m) => "no"));
}