query
On this page

substring

lib.strings.substring

Primop
Docs pulled from | This Revision | 22 minutes ago

Takes 3 arguments

start, len, s


Return the substring of s from character position start (zero-based) up to but not including start + len. If start is greater than the length of the string, an empty string is returned, and if start + len lies beyond the end of the string, only the substring up to the end of the string is returned. start must be non-negative. For example,

builtins.substring 0 3 "nixos"

evaluates to "nix".


Noogle also knows

Aliases
Detected Type
substring :: Int -> Int -> String -> String