1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/std/strings
Fabriece Sumuni ceb7aae8ef fix typo
2020-01-23 10:40:26 -05: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 Move everything into std subdir 2019-10-09 17:10:09 -04: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..."