FMX.Text.FilterText

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function FilterText(const Input: string; const Filter: string): string;

C++

extern DELPHI_PACKAGE System::UnicodeString __fastcall FilterText(const System::UnicodeString Input, const System::UnicodeString Filter);

Properties

Type Visibility Source Unit Parent
function public
FMX.Text.pas
FMX.Text.hpp
FMX.Text FMX.Text

Description

Removes from the source string Input all characters that are not in the Filter string.

If Filter is empty then the function will return the source string.

See Also