Marcos Santana Postado Julho 16, 2010 Denunciar Share Postado Julho 16, 2010 Colegas como incluir o nul em um txtNUL: Em Dec = 0, Hx = 0, Oct = 000 é em Char = Nul que é o nullComo incluir assim: abc abc nulNo final de uma arquivo txt;No notepad ++ ele fica em negrito más não copia. Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Jhonas Postado Julho 16, 2010 Denunciar Share Postado Julho 16, 2010 Colegas como incluir o null em um txtNão entendi ... qual a finalidade ? Help do delphi ( F1 ) Many programming languages, including C and C++, lack a dedicated string data type. These languages, and environments like Windows that are built with them, rely on null-terminated strings. A null-terminated string is a zero-based array of characters that ends with NULL (#0); since the array has no length indicator, the first NULL character marks the end of the string. You can use Object Pascal constructions and special routines in the SysUtils unit (see Standard routines and I/O) to handle null-terminated strings when you need to share data with systems that use them. For example, the following type declarations could be used to store null-terminated strings. type TIdentifier = array[0..15] of Char; TFileName = array[0..259] of Char; TMemoText = array[0..1023] of WideChar; You can assign a string constant to a statically allocated zero-based character array. (Dynamic arrays won’t work for this purpose.) If you initialize an array constant with a string that is shorter than the declared length of the array, the remaining characters are set to #0.abraço Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Marcos Santana Postado Julho 17, 2010 Autor Denunciar Share Postado Julho 17, 2010 Obrigado tambem não entendi más esse caracter fica no fim que um arquivo de exportação.é sem ele um outro sistema que não tenho acesso gera erros. Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Jhonas Postado Julho 17, 2010 Denunciar Share Postado Julho 17, 2010 Incluir null em uma stringprocedure TForm1.Button1Click(Sender: TObject); begin // colocar carcter nulo no final da string edit1.text := edit1.text + #0; end;abraço Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Marcos Santana Postado Julho 17, 2010 Autor Denunciar Share Postado Julho 17, 2010 Beleza resolvido.obrigado. Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
Marcos Santana
Colegas como incluir o nul em um txt
NUL: Em Dec = 0, Hx = 0, Oct = 000 é em Char = Nul que é o null
Como incluir assim: abc
abc
nul
No final de uma arquivo txt;
No notepad ++ ele fica em negrito más não copia.
Link para o comentário
Compartilhar em outros sites
4 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.