On this page:
string
stringp

7 Strings🔗ℹ

type

string

procedure

(stringp v)  boolean

  v : all
Produces t if v is a string, nil otherwise.

> (stringp "The silver fox bounded through the forest.")

t

> (stringp "watermelon")

t

> (stringp 'watermelon)

nil