stringprocess 1.0.10 copy "stringprocess: ^1.0.10" to clipboard
stringprocess: ^1.0.10 copied to clipboard

A string library for common string operations and general text processing functions.

example/stringprocess_example.dart

// Copyright (c) 2017-2019, daftspaniel. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.

import 'package:stringprocess/stringprocess.dart';

main() {
  // A few simple examples.
  var tps = new StringProcessor();

  // Print the numbers 1 to 10.
  print(tps.generateSequenceString(1, 10, 1));

  // Repeat Something!
  print(tps.generateRepeatedString("Mine!", 42));

  // Word count.
  print(tps.getWordCount("Dart is Awesome and cool!"));

  // Line count.
  print(tps.getLineCount("hello\ngood\nevening\nwelcome!\n"));
}
1
likes
40
pub points
0%
popularity

Publisher

unverified uploader

A string library for common string operations and general text processing functions.

Repository (GitLab)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

html_unescape, markdown

More

Packages that depend on stringprocess