System.WideStrUtils.WideQuotedStr

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function WideQuotedStr(const S: WideString; Quote: WideChar): WideString;

C++

extern DELPHI_PACKAGE System::WideString __fastcall WideQuotedStr(const System::WideString S, System::WideChar Quote);

Properties

Type Visibility Source Unit Parent
function public
System.WideStrUtils.pas
System.WideStrUtils.hpp
System.WideStrUtils System.WideStrUtils

Description

Returns the quoted version of a WideString.

Use WideQuotedStr to convert a string (S) to a quoted string, using the provided Quote character. A Quote character is inserted at the beginning and end of S, and each Quote character in the string is doubled.

See Also