Mudanças entre as edições de "Função IntToStr"

(Criou página com 'A função '''IntToStr''' converte um valor inteiro em sua representação de string. ==='''Sintaxe'''=== function IntToStr(Value: Integer): string; ==='''Parâmetros'''===...')
 
 
Linha 2: Linha 2:
  
 
==='''Sintaxe'''===
 
==='''Sintaxe'''===
function IntToStr(Value: Integer): string;
+
Function IntToStr(Value: Integer): string;
  
 
==='''Parâmetros'''===
 
==='''Parâmetros'''===

Edição atual tal como às 15h50min de 25 de julho de 2024

A função IntToStr converte um valor inteiro em sua representação de string.

Sintaxe

Function IntToStr(Value: Integer): string;

Parâmetros

Nome Tipo Descrição
Value Integer Valor inteiro que será convertido.

Exemplos

var
  numero: Integer;
  numeroStr: string;
begin
  numero := 12345;
  numeroStr := IntToStr(numero);
  Informacao(numeroStr); // Resultado: '12345'
end.