Limited character set text generator

Ori Ben-Dor
Posts: 386
Does anyone know of a text (or pseudo-text) generator where you can limit the character set (to some subset of the Latin alphabet, that is)?
(The problem with taking a full character set text and deleting unwanted letters is that you quickly end up with too many short or even one letter words, so the result doesn't have the pattern of an actual text.)
(The problem with taking a full character set text and deleting unwanted letters is that you quickly end up with too many short or even one letter words, so the result doesn't have the pattern of an actual text.)
0
Comments
-
Matthew Butterick put this simple tool together a long time ago. Words, not text.
Miguel Sousa constructed this one. If you click on Options, you can change scripts even.
3 -
Great, thanks, I'll check them out.0
-
There is also this one, from Tim Ahrens.2
-
Thanks to you too!1
-
This is what I wrote for myself:
from __future__ import print_function import random list = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', ' '] for n in range(70): random.shuffle(list) for n in list: print(n, end='')
0 -
There is also Typable by Ondrej Jób.2
-
Cyreal.org/testing (a mirror of the impallari.com/testing page) also has one I think0
-
Great, thanks!0
-
Benedikt Bramböck said:There is also Typable by Ondrej Jób.
I've coded a somewhat related CLI script that you feed UFO and TXT files and it outputs strings of specific length, ideal for finding those nice specimen words of different weights with same font size and length. Aside from reading the available glyphs from the UFO and filtering the possible words by that it also has options for excluding / including letters and letter combinations.
0
Categories
- All Categories
- 46 Introductions
- 3.8K Typeface Design
- 475 Type Design Critiques
- 555 Type Design Software
- 1.1K Type Design Technique & Theory
- 640 Type Business
- 830 Font Technology
- 29 Punchcutting
- 507 Typography
- 120 Type Education
- 313 Type History
- 74 Type Resources
- 109 Lettering and Calligraphy
- 30 Lettering Critiques
- 79 Lettering Technique & Theory
- 529 Announcements
- 84 Events
- 110 Job Postings
- 165 Type Releases
- 169 Miscellaneous News
- 274 About TypeDrawers
- 54 TypeDrawers Announcements
- 118 Suggestions and Bug Reports