1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/strings
2019-04-04 05:58:16 -04:00
..
pad.ts Fixing jsdoc example padding (denoland/deno_std#322) 2019-04-04 05:58:16 -04:00
pad_test.ts Add strings/pad (denoland/deno_std#282) 2019-03-15 12:02:38 -04:00
README.md Documentation clean up (denoland/deno_std#288) 2019-03-18 11:08:01 -04:00
strings.ts feat: multipart, etc.. (denoland/deno_std#180) 2019-02-10 18:49:48 -05:00
test.ts Test reorganization (denoland/deno_std#290) 2019-03-18 12:49:54 -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..."