Search notes:

SAS format: words

The wordsN format can be used to spell numbers, that is to transform a number into its corresponding text (1 becomes one, 2 becomes two etc.)
data tq84_nums_spelled;

/* The words format spells numbers */

  attrib num     format =       8.
         spelled format = words50.;

  do num=0 to 1000;
     spelled = num;
     output;
  end;

run;
Github repository about-SAS, path: /programming/formats-informats/words/spell-numbers.sas

See also

informats and formats
Perl module Number::Spell

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/Companie...', 1759338194, '216.73.216.88', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/Companies-Products/SAS/programming/formats-informats/words/index(56): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78