ansi_slice 0.1.1+1 ansi_slice: ^0.1.1+1 copied to clipboard
Slice a string with ANSI escape codes.
ansi_slice #
Slice a string with ANSI escape codes
Install #
$ dart pub add ansi_slice
Usage #
import 'package:ansi/ansi.dart';
import 'package:ansi_slice/ansi_slice.dart';
void main() {
final string = 'The quick brown ${red('fox jumped over ')}the lazy ${green('dog and then ran away with the unicorn.')}';
print(sliceAnsi(string, start: 20, end: 30));
}