Difference between revisions of "Manuals/calci/CLEAN"

From ZCubes Wiki
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 id="6SpaceContent" class="zcontent" align="left">
+
<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.
  
'''CLEAN'''(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
  
where,
+
==Example==
  
'''Text''' - is any text from which to remove nonprintable characters.
+
{| id="TABLE3" class="SpreadSheet blue"
 +
|- class="even"
 +
! CLEAN("text")
 +
! text
 +
! Result
 +
 
 +
|- class="odd"
 +
| CLEAN("�ZCubes�")
 +
| �ZCubes�
 +
| ZCubes
 +
 
 +
|- class="even"
 +
| CLEAN(nb)
 +
|89
 +
|Y
  
</div>
+
|- class="odd"
----
+
|CLEAN("†††cross†††")
<div id="1SpaceContent" class="zcontent" align="left">It removes all nonprintable characters from text.</div>
+
|†††cross†††
----
+
|cross
<div id="7SpaceContent" class="zcontent" align="left">CLEAN function remove the first 32 nonprinting characters in the 7-bit ASCII(0 to 31)from text.</div>
 
----
 
<div id="12SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="left">
 
  
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
  
</div></div>
+
==Related Videos==
----
 
<div id="8SpaceContent" class="zcontent" align="left">
 
  
Lets see an example in (Column1, Row2)
+
{{#ev:youtube|jw_XHSaZHmA|280|center|CLEAN}}
  
<nowiki>=CLEAN(R1C1)</nowiki>
+
==See Also==
 +
*[[Manuals/calci/CLEAR| CLEAR]]
 +
*[[Manuals/calci/CLS| CLS]]
  
CLEAN returns Zcubes.
+
==References==
 +
*[http://en.wikipedia.org/wiki/ASCII ASCII Values]
 +
*[http://web.itu.edu.tr/~sgunduz/courses/mikroisl/ascii.html Printable & Non-printable Characters]
  
</div>
 
----
 
<div id="10SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Syntax </div><div class="ZEditBox"><center></center></div></div>
 
----
 
<div id="4SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Remarks </div></div>
 
----
 
<div id="3SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Examples </div></div>
 
----
 
<div id="11SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Description </div></div>
 
----
 
<div id="2SpaceContent" class="zcontent" align="left">
 
  
{| id="TABLE3" class="SpreadSheet blue"
 
|- class="even"
 
| class=" " |
 
| class="  " | Column1
 
| Column2
 
| Column3
 
| Column4
 
|- class="odd"
 
| class=" " | Row1
 
| class="sshl_f" | �Zcubes�
 
| class=" " |
 
| class=" " |
 
| class=" " |
 
|- class="even"
 
| class="  " | Row2
 
| class="sshl_f      SelectTD ChangeBGColor SelectTD" |
 
<div id="2Space_Handle" class="zhandles" title="Click and Drag to resize CALCI Column/Row/Cell. It is EZ!"></div><div id="2Space_Copy" class="zhandles" title="Click and Drag over to AutoFill other cells."></div><div id="2Space_Drag" class="zhandles" title="Click and Drag to Move/Copy Area.">[[Image:copy-cube.gif]]  </div>Zcubes
 
| class=" " |
 
| class=" " |
 
| class=" " |
 
|- class="odd"
 
| Row3
 
| class="    " |
 
| class=" " |
 
| class=" " |
 
| class=" " |
 
|- class="even"
 
| Row4
 
| class=" " |
 
| class=" " |
 
| class=" " |
 
| class=" " |
 
|- class="odd"
 
| class=" " | Row5
 
| class=" " |
 
| class=" " |
 
| class=" " |
 
| class=" " |
 
|- class="even"
 
| Row6
 
| class=" " |
 
| class=" " |
 
| class=" " |
 
| class=" " |
 
|}
 
  
<div align="left">[[Image:calci1.gif]]</div></div>
+
*[[Z_API_Functions | List of Main Z Functions]]
----
+
 
 +
*[[ Z3 |  Z3 home ]]

Latest revision as of 06: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
  1. 33..43.clean(/3/g) = 4 5 6 7 8 9 40 41 42 4 (all 3 globally)
  2. 33..43.clean(/3/) = 3 4 5 6 7 8 9 40 41 42 4

Related Videos

CLEAN

See Also

References