Just another update
This commit is contained in:
parent
a25938f123
commit
00a190b0a6
6591 changed files with 94363 additions and 23227 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