aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/strings.texi16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi
index 5cae939b7bf..b4d7bc729f5 100644
--- a/doc/lispref/strings.texi
+++ b/doc/lispref/strings.texi
@@ -390,6 +390,22 @@ whitespace to a single space character, as well as removing all
390whitespace from the start and the end of @var{string}. 390whitespace from the start and the end of @var{string}.
391@end defun 391@end defun
392 392
393@defun string-trim-left string &optional regexp
394Remove the leading text that matches @var{regexp} from @var{string}.
395@var{regexp} defaults to @samp{[ \t\n\r]+}.
396@end defun
397
398@defun string-trim-right string &optional regexp
399Remove the trailing text that matches @var{regexp} from @var{string}.
400@var{regexp} defaults to @samp{[ \t\n\r]+}.
401@end defun
402
403@defun string-trim string &optional trim-left trim-right
404Remove the leading text that matches @var{trim-left} and trailing text
405that matches @var{trim-right} from from @var{string}. Both regexps
406default to @samp{[ \t\n\r]+}.
407@end defun
408
393@defun string-fill string length 409@defun string-fill string length
394Attempt to Word-wrap @var{string} so that no lines are longer than 410Attempt to Word-wrap @var{string} so that no lines are longer than
395@var{length}. Filling is done on whitespace boundaries only. If 411@var{length}. Filling is done on whitespace boundaries only. If