Manuals/calci/CLEAN
Jump to navigation
Jump to search
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