Difference between revisions of "Manuals/calci/CLEAN"
Jump to navigation
Jump to search
(Created page with "<div id="6SpaceContent" class="zcontent" align="left"> '''CLEAN'''(Text) where, '''Text''' - is any text from which to remove nonprintable characters. </div> --...") |
|||
(11 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
− | <div | + | <div style="font-size:30px">'''CLEAN(Text)'''</div><br/> |
+ | *<math>Text</math> is any string to remove non-printable characters. | ||
+ | **CLEAN(),removes all nonprintable characters from text. | ||
− | + | ==Description== | |
+ | *It removes all non-printable characters from text entered. | ||
+ | *Printable characters are from ASCII values 32 to 127 | ||
+ | *CLEAN function remove all other characters other that ASCII values 32 to 127.. | ||
+ | =CLEAN("�ZCubes�") gives the result ZCubes | ||
− | + | ==Example== | |
− | + | {| id="TABLE3" class="SpreadSheet blue" | |
+ | |- class="even" | ||
+ | ! CLEAN("text") | ||
+ | ! text | ||
+ | ! Result | ||
+ | |||
+ | |- class="odd" | ||
+ | | CLEAN("�ZCubes�") | ||
+ | | �ZCubes� | ||
+ | | ZCubes | ||
+ | |||
+ | |- class="even" | ||
+ | | CLEAN(nb) | ||
+ | |89 | ||
+ | |Y | ||
− | + | |- class="odd" | |
− | + | |CLEAN("†††cross†††") | |
− | + | |†††cross††† | |
− | + | |cross | |
− | |||
− | |||
− | |||
− | CLEAN | + | |- class="even" |
+ | |CLEAN(B5) | ||
+ | |ஸtrial� | ||
+ | |trial | ||
+ | |} | ||
+ | #33..43.clean(/3/g) = 4 5 6 7 8 9 40 41 42 4 (all 3 globally) | ||
+ | #33..43.clean(/3/) = 3 4 5 6 7 8 9 40 41 42 4 | ||
− | + | ==Related Videos== | |
− | |||
− | |||
− | + | {{#ev:youtube|jw_XHSaZHmA|280|center|CLEAN}} | |
− | + | ==See Also== | |
+ | *[[Manuals/calci/CLEAR| CLEAR]] | ||
+ | *[[Manuals/calci/CLS| CLS]] | ||
− | + | ==References== | |
+ | *[http://en.wikipedia.org/wiki/ASCII ASCII Values] | ||
+ | *[http://web.itu.edu.tr/~sgunduz/courses/mikroisl/ascii.html Printable & Non-printable Characters] | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | *[[Z_API_Functions | List of Main Z Functions]] | |
− | + | ||
+ | *[[ Z3 | Z3 home ]] |
Latest revision as of 05:36, 7 April 2020
CLEAN(Text)
- is any string to remove non-printable characters.
- CLEAN(),removes all nonprintable characters from text.
Description
- It removes all non-printable characters from text entered.
- Printable characters are from ASCII values 32 to 127
- CLEAN function remove all other characters other that ASCII values 32 to 127..
=CLEAN("�ZCubes�") gives the result ZCubes
Example
CLEAN("text") | text | Result |
---|---|---|
CLEAN("�ZCubes�") | �ZCubes� | ZCubes |
CLEAN(nb) | 89 | Y |
CLEAN("†††cross†††") | †††cross††† | cross |
CLEAN(B5) | ஸtrial� | trial |
- 33..43.clean(/3/g) = 4 5 6 7 8 9 40 41 42 4 (all 3 globally)
- 33..43.clean(/3/) = 3 4 5 6 7 8 9 40 41 42 4
Related Videos
See Also
References