deno/std/strings
2020-02-11 17:24:27 +01:00
..
decode.ts Move everything into std subdir 2019-10-09 17:10:09 -04:00
encode.ts Move everything into std subdir 2019-10-09 17:10:09 -04:00
mod.ts Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
pad.ts Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
pad_test.ts refactor: rewrite tests in std/ to use Deno.test (#3930) 2020-02-11 17:24:27 +01:00
README.md fix typo 2020-01-23 10:40:26 -05:00

Strings

This module provides a few basic utilities to manipulate strings.

Usage

pad

Input string is processed to output a string with a minimal length. If the parameter strict is set to true, the output string length is equal to the strLen parameter.

Basic usage:

import { pad } from "https://deno.land/std/strings/pad.ts";
pad("deno", 6, { char: "*", side: "left" }); // output : "**deno"
pad("deno", 6, { char: "*", side: "right" }); // output : "deno**"
pad("denosorusrex", 6, {
  char: "*",
  side: "left",
  strict: true,
  strictSide: "right",
  strictChar: "..."
}); // output : "den..."