From: Jean Louis <bugs@gnu.support>
To: Marcin Borkowski <mbork@mbork.pl>,
Help Gnu Emacs mailing list <help-gnu-emacs@gnu.org>
Subject: Re: How to convert an arbitrary string into a filename
Date: Wed, 26 Apr 2023 15:30:08 +0300 [thread overview]
Message-ID: <ZEkZUIrE77tr726+@protected.localdomain> (raw)
In-Reply-To: <ZEj4O22wVnXnZ8a/@protected.localdomain>
* Jean Louis <bugs@gnu.support> [2023-04-26 15:26]:
> (defun string-slug (s &optional random)
> "Return slug for Website Revision System by using string S.
>
> RANDOM number may be added on the end."
(defun random-number (&optional digits)
"Return the random number with 6 digits by default"
(let ((digits (if digits digits 6))
(count 0))
(string-to-number
(with-output-to-string
(while (/= count digits)
(princ (number-to-string (1+ (random 9))))
(setq count (1+ count)))))))
(string-slug " Hello there, how are you? =)((&/&%))") ➜ "Hello-there-how-are-you"
(string-slug " Hello
there, how are you? =)((&/&%))" t) ➜ "Hello-there-how-are-you-292681"
Random number does not guarantee uniqueness of the slug.
--
Jean
Take action in Free Software Foundation campaigns:
https://www.fsf.org/campaigns
In support of Richard M. Stallman
https://stallmansupport.org/
next prev parent reply other threads:[~2023-04-26 12:30 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-26 3:55 How to convert an arbitrary string into a filename Marcin Borkowski
2023-04-26 4:03 ` Platon Pronko
2023-04-26 4:42 ` Marcin Borkowski
2023-04-26 5:39 ` Platon Pronko
2023-04-26 18:32 ` Marcin Borkowski
2023-04-26 5:42 ` Yuri Khan
2023-04-26 18:32 ` Marcin Borkowski
2023-04-26 10:08 ` Jean Louis
2023-04-26 12:30 ` Jean Louis [this message]
2023-04-26 13:07 ` Eli Zaretskii
2023-04-27 4:52 ` Jean Louis
2023-04-27 5:53 ` Eli Zaretskii
2023-04-27 8:06 ` Platon Pronko
2023-04-26 18:30 ` Marcin Borkowski
2023-04-26 21:29 ` Emanuel Berg
2023-04-27 6:51 ` Marcin Borkowski
2023-04-26 21:32 ` Emanuel Berg
2023-04-27 6:49 ` Marcin Borkowski
2023-04-29 6:20 ` James Thomas
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZEkZUIrE77tr726+@protected.localdomain \
--to=bugs@gnu.support \
--cc=help-gnu-emacs@gnu.org \
--cc=mbork@mbork.pl \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).