Skip to content

Instantly share code, notes, and snippets.

@deech
Created November 28, 2013 20:49
Show Gist options
  • Save deech/7697936 to your computer and use it in GitHub Desktop.
Save deech/7697936 to your computer and use it in GitHub Desktop.
Elisp String Test
ELISP> (setq *noel* "noël")
"noël"
ELISP> (subseq *noel* 0 3)
"noë"
ELISP> (length *noel*)
4
ELISP> (apply #'string (reverse (string-to-list *noel*)))
"lëon"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment