fork download
  1. import 'dart:io';
  2.  
  3. void main() {
  4.  
  5. String stripDots(String string){
  6. return string.replaceAll(RegExp(r'\.{2,}'), '.');
  7. }
  8.  
  9. String text = "abc.... Def..";
  10. print(stripDots(text));
  11. }
Success #stdin #stdout 1.03s 121400KB
stdin
Standard input is empty
stdout
abc. Def.