StartprogrammingusingObjectPascal:DeleteProcedure: Difference between revisions
Jump to navigation
Jump to search
Onionmixer (talk | contribs) mNo edit summary |
Onionmixer (talk | contribs) (스타일수정) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
==Delete 프로시저== | |||
이 프로시저는 문자열로부터 문자나 | 이 프로시저는 문자열로부터 문자나 하위 문자열을 삭제할 때 사용합니다. 삭제 할 하위 문자열의 시작위치와 길이를 알 필요가 있습니다. | ||
예를 들어, '' 'Heo World' ''를 만들기 위해 '' 'Hello World' ''로부터 ''ll'' 문자들을 삭제하려 한다면, 다음과 같이 할 수 있습니다. | |||
<syntaxhighlight lang="pascal"> | <syntaxhighlight lang="pascal"> | ||
Line 17: | Line 17: | ||
end. | end. | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:StartprogrammingusingObjectPascal]] | [[Category:StartprogrammingusingObjectPascal]] |
Latest revision as of 06:03, 4 April 2013
Delete 프로시저
이 프로시저는 문자열로부터 문자나 하위 문자열을 삭제할 때 사용합니다. 삭제 할 하위 문자열의 시작위치와 길이를 알 필요가 있습니다.
예를 들어, 'Heo World' 를 만들기 위해 'Hello World' 로부터 ll 문자들을 삭제하려 한다면, 다음과 같이 할 수 있습니다.
var
Line: string;
begin
Line:= 'Hello world';
Delete(Line, 3, 2);
Writeln(Line);
Writeln('Press enter key to close');
Readln;
end.