Questions tagged as 'txt'

3
answers

Pre-process large text files in R

I am writing a script, which I will make public, to open the RAIS microdata (unidentified, available here ) in R using MonetDB. However, the bank does not accept a vignette (,) as a decimal separator. Each RAF UFano.txt file is quite large (up...
asked by 09.10.2014 / 22:52
3
answers

Javascript - Line break in .txt file

How do I identify a line break in a txt using javascript? Example: Essa é a linha 1 Essa é a linha 2 Essa é a linha 3 The file has these 3 lines and I want to put them in an array separated by the line break, array [0] is line 1, array [...
asked by 20.07.2016 / 16:29
2
answers

Find specific value within a .txt file C #

I have a .txt file with the following lines: 000-000 = CRT 001-000 = 00000021 009-000 = 00 012-000 = 247823 013-000 = 0000559877 022-000 = 24082017 023-000 = 152842 032-000 = 80F1 100-000 = JORGE EXPEDITO 307-000 = S17SNSNNNSPSS9MSNN00 3...
asked by 25.08.2017 / 14:01
1
answer

Sum of several text files * .txt

I have a series of files in .txt and would like to sum them all together in one (independent of the order). Is it possible to do this by word vba, some other text editor, or other means?     
asked by 12.02.2016 / 02:08
2
answers

Export query result sql server to txt file on apache server automatically

I make the following query from my apache server on a SQL SERVER database: <?php // Dados do banco $dbhost = "192.168.0.100"; #Nome do host $db = "DATABASE"; #Nome do banco de dados $user = "root"; #N...
asked by 16.01.2017 / 15:42
3
answers

ListBox - how to show full product name and bring another column of values

I have this ListBox . Whenloadeditusesatxtfilethus: CodetoloadListBox:privatevoidfrmOrdemServico_Load(objectsender,EventArgse){string[]d=File.ReadAllLines(@"C:\Users\willian\Downloads\dbProdutos.txt"); foreach (var line in d)...
asked by 27.10.2017 / 15:06
1
answer

Writing to txt file write, read and write to another file in txt

I started working a little bit at a company that programs the MiFire cards and I'm in the experimental phase. Meanwhile the engineer told me to do a job. First step: I have to enter two numeric values and get the result of the sum; Save in...
asked by 12.12.2017 / 11:36
1
answer

What function does it allow to open .txt file and run other functions in the contents of this .txt?

What function in C language does it allow to open file .txt and run other functions in the contents of this .txt ?     
asked by 21.11.2018 / 20:37
2
answers

Excessive line break when creating C # .txt file?

I am trying to generate a .txt file from a code list retrieved from the database. However, when the file is generated, line breaks are excessive, as shown below:    Thecodeisasfollows,beingaforeachthattraversestheentirelistofobjectsre...
asked by 03.04.2017 / 15:53
2
answers

Generate Pascal code text file

I have a pascal code. It is as follows: Program Pzim ; var i:integer; vect:array[1..1001] of integer; Begin i:=1; for i:= 1 to 999 do vect[i]:=i+1; for i:= 1 to 999 do writeln (vect[i]); readln; End....
asked by 13.02.2016 / 22:46