Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,8 @@
|
|||
; generate our test string of characters with control and extended characters
|
||||
(def range-of-chars (apply str (map char (range 256))))
|
||||
|
||||
; filter out the control characters:
|
||||
(apply str (filter #(not (Character/isISOControl %)) range-of-chars))
|
||||
|
||||
; filter to return String of characters that are between 32 - 126:
|
||||
(apply str (filter #(<= 32 (int %) 126) range-of-chars))
|
||||
Loading…
Add table
Add a link
Reference in a new issue