WorksheetFunction.Clean(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes all nonprintable characters from text.
public:
System::String ^ Clean(System::String ^ Arg1);
public string Clean (string Arg1);
Public Function Clean (Arg1 As String) As String
Parameters
- Arg1
- String
Any worksheet information from which you want to remove nonprintable characters.
Returns
Remarks
Use Clean on text imported from other applications that contains characters that may not print with your operating system. For example, you can use Clean to remove some low-level computer code that is frequently at the beginning and end of data files and cannot be printed.
Important: The Clean function was designed to remove the first 32 nonprinting characters in the 7-bit ASCII code (values 0 through 31) from text. In the Unicode character set, there are additional nonprinting characters (values 127, 129, 141, 143, 144, and 157). By itself, the Clean function does not remove these additional nonprinting characters.