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
- 43 Introductions
- 3.7K Typeface Design
- 798 Font Technology
- 1K Technique and Theory
- 617 Type Business
- 444 Type Design Critiques
- 541 Type Design Software
- 30 Punchcutting
- 136 Lettering and Calligraphy
- 83 Technique and Theory
- 53 Lettering Critiques
- 483 Typography
- 301 History of Typography
- 114 Education
- 68 Resources
- 498 Announcements
- 79 Events
- 105 Job Postings
- 148 Type Releases
- 165 Miscellaneous News
- 269 About TypeDrawers
- 53 TypeDrawers Announcements
- 116 Suggestions and Bug Reports