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
- 480 Type Design Critiques
- 558 Type Design Software
- 1.1K Type Design Technique & Theory
- 647 Type Business
- 837 Font Technology
- 29 Punchcutting
- 513 Typography
- 119 Type Education
- 319 Type History
- 75 Type Resources
- 110 Lettering and Calligraphy
- 31 Lettering Critiques
- 79 Lettering Technique & Theory
- 540 Announcements
- 88 Events
- 112 Job Postings
- 168 Type Releases
- 171 Miscellaneous News
- 275 About TypeDrawers
- 53 TypeDrawers Announcements
- 120 Suggestions and Bug Reports