JanetDocsPlaygroundI'm feeling luckyGitHub sign in

string/ascii-lower



    cfunction
    src/core/string.c on line 249, column 1

    (string/ascii-lower str)

    Returns a new string where all bytes are replaced with the 
    lowercase version of themselves in ASCII. Does only a very simple 
    case check, meaning no unicode support.


1 exampleSign in to add an example
Loading...
(string/ascii-lower "HELLO") #=> "hello"
swlkrPlayground