deno/std/strings
2019-10-09 17:22:22 -04: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 Move everything into std subdir 2019-10-09 17:10:09 -04:00
pad.ts Move everything into std subdir 2019-10-09 17:10:09 -04:00
pad_test.ts Move everything into std subdir 2019-10-09 17:10:09 -04:00
README.md Run deno_std tests in github actions 2019-10-09 17:22:22 -04: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..."