#elisp
Function:
string &rest charactersThis returns a string containing the characters characters .
(string ?a ?b ?c) ⇒ "abc"
If you want to change selection, open document below and click on "Move attachment"
GNU Emacs Lisp Reference Manual: Creating Stringsnegative, an error is signaled.
(make-string 5 ?x)
⇒ "xxxxx"
(make-string 0 ?x)
⇒ ""
Other functions to compare with this one include make-vector
(see Vectors) and make-list (see Building Lists).
<span>Function: string &rest characters This returns a string containing the characters characters .
(string ?a ?b ?c)
⇒ "abc"
Function: substring string start &optional end This function returns a new string which consists of those characters
from string in the range from (and including) the character a Summary
status | not read | | reprioritisations | |
---|
last reprioritisation on | | | suggested re-reading day | |
---|
started reading on | | | finished reading on | |
---|
Details