복사 기능에 delphi

코드 예제

2
0

복사 delphi

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

복사 기능 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"

다른 언어로

이 페이지는 다른 언어로되어 있습니다

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