Delphi kópiu funkcia

Príklady kódu

2
0

kopírovať delphi

{Your Cod Here}
{Target} := copy({Source}, {Start}, {Distance});
1
0

kopírovať funkcia delphi

//This function will copy or selct part of a string and assign it to another variable

//syntax
	// <variable name> := copy(<string>, <start index>, <number of characters>);
    
//Example

var
	Phrase : String;
    
phrase := copy('Hello world', 1, 5) 
// Output will be phrase := "Hello"

V iných jazykoch

Táto stránka je v iných jazykoch

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................