collapseWhitespace function

String collapseWhitespace(
  1. String string
)

Utility function to collapse whitespace runs to single spaces and strip leading/trailing whitespace.

Implementation

String collapseWhitespace(String string) {
  var result = StringBuffer();
  var skipSpace = true;
  for (var i = 0; i < string.length; i++) {
    var character = string[i];
    if (_isWhitespace(character)) {
      if (!skipSpace) {
        result.write(' ');
        skipSpace = true;
      }
    } else {
      result.write(character);
      skipSpace = false;
    }
  }
  return result.toString().trim();
}