Most voted "txt" questions
TXT is a file extension or file that stores text, and is structured as a sequence of lines. May have one or more special characters, known as an end-of-file marker, after the last line of text.
Learn more…182 questions
Sort by count of
-
1
votes2
answers1511
viewsReading data from a Java file
Good evening, I have a text file like the image I need to read this file and take the data and store it in an object array. For example, I have a ROOM object, this object has the following…
-
1
votes1
answer2173
viewsHow to create a C Ranking?
How can I read and sort a text file where the information is like this: carlos 5 lucas 20 josue 10 *On file it looks like this. Saved randomly but when I read the precise information it is in the…
-
1
votes1
answer44
viewsCount number of occurrences in a log file
I am trying to count the number of occurrences of multiple text patterns in a log file. My code is counting all lines of the file for all text patterns. Where am I going wrong? The log file looks…
-
1
votes1
answer270
viewsAccent problem when generating txt in php
I am using the code below to generate a txt file but is generating a strange code. <?php header("Content-Type: text/html; charset=UTF-8",true); $fp = fopen("bloco.txt", "w"); $eu = 'é';…
-
1
votes1
answer895
viewsDelete last line - Java
I’m reading a CSV using Bufferedreader by reading line by converting the result into a .txt. At the end of my txt is generating a line break after the last item. I’m trying to find a way to remove…
-
1
votes1
answer368
viewsLoad two fields from a Datagrid using a txt file
How can I do this, see what I have so far: Datagrid, I need to load the comboBox and the valor unitário with values I previously saved on a txt Button save products, save name - price private void…
-
1
votes1
answer68
viewsWrite to txt
Friends, I am trying to generate a txt, in which the user clicks on the button and automatically downloads it. It is already generating txt, but I would like to know how to write in it? string str =…
-
1
votes2
answers1448
viewsHow do I get a specific column from a . txt file with PHP
I have a txr file with several columns but I want to get only a specific value of the first one. So far I was able to open the file and separate the values from the header. <?php…
-
1
votes1
answer2558
views -
1
votes1
answer2080
viewsHow to change line in text file in C#?
Currently I inform in variable stringantiga the exact value to find and replace it. Is there any way to substitute for the line number instead of the exact value of stringantiga? string arquivo =…
-
1
votes1
answer439
viewsFilters in TXT file
https://drive.google.com/open?id=1ud743B57XM_iZ_wvQrSYGRrMo-5nT94p I have a file txt that I have to apply a filter to bring me a field in column 2. And then save the result in csv, so it’s easier to…
-
1
votes1
answer619
viewsAssign text in TXT file to a variable
Good morning! I am running a project that is working normally, but I would like to automate it more to gain time in operation. In case my project takes in a text file the main words I described…
-
1
votes2
answers691
viewsProblems opening and closing file with fwrite
Good morning, you guys! I have a problem in the part of reopening a file in Txt, the problem that in the first statement it opens normally, writes and closes. But further down in the script I try to…
-
1
votes2
answers883
viewsRead lines from a TXT to Arraylist
I need to read a log saved in a TXT file that contains geographical coordinates in the following form: -54.123440,-21.123456 -54.123425,-21.123467 -54.123435,-21.123480 -54.123444,-21.123444…
-
1
votes1
answer873
viewsRead txt on Assembly i8086
I have the following code to read txt file: ; um programa que demonstra a criação de um arquivo e a ; leitura do mesmo .model small .stack .code start: mov ax,@data ; endereço de base do segmento de…
-
1
votes1
answer82
viewsphp - create txt file and add all new records to it
Good, I am creating a Function that will create a new log.txt, if you already exist just write the new data. But it is giving errors, since I am testing, and I click REFRESH to the browser it just…
-
1
votes0
answers71
viewsTry to read a. txt file
Well I’m trying to read from a . txt file, but when I try to read and put in variables it’s giving me all the wrong info, now wrong places. I’ve tried to use Debug’s tool but can’t figure out why...…
-
1
votes1
answer661
viewssave in txt the result of the sql query in Firebird using Delphi
I need to save the result of a query inside the txt file by separating by a delimiter, I am extremely new to Delphi and Firebird, so any help is welcome code below: procedure…
-
1
votes0
answers25
viewsHow to view data from a TXT in my arrayList - Android Studio
Currently I do so: ArrayList<produtoItem> lista = new ArrayList<produtoItem>(); lista.add(new produtoItem(R.drawable.imagem, "AA", "AA", "AA", "AA")); adapter = new produtoAdapter(this,…
-
1
votes1
answer76
viewsCreate a configuration ". TXT" file
My problem is this, I need to make a configurable file to integrate to my project, follow its format currently: PRINTER = 127.0.0.12 PRINTER_PORT = 9100 I’d like to format it for this style:…
-
1
votes1
answer146
viewsProblems reading a C file
I am trying to open and read a C file and then print the result but when printing it does not come out complete in case it has a 32 x 32 text image. Besides I would also like to know how I will read…
-
1
votes1
answer53
viewsRead txt file names in C
So basically the code needs to read the names of a txt file (AFTER I WILL MANIPULATE THEM) until it has the word 'end. In that part of the code where it reads the lines, it just stores the 1 string…
-
0
votes0
answers87
viewsPHP: TXT for Multilevel Array
Guys, yesterday I had asked for help on the subject here that, promptly friends helped me, but I faced another problem: Only later I realized that the file . TXT has several levels, and not just 2…
-
0
votes1
answer672
viewsHow to compare user-typed strings to Strings already saved in a . txt
I’m working with file manipulation and I’m not able to compare what the user types with the password and login saved in the person’s registration file! I can’t get a specific position inside the…
-
0
votes1
answer39
viewstxt file inserted in bd
good, I am making a website, where you will find a txt file that the user will upload (always in msm format(process, name, number)). I’m trying to use arrays to search the data and enter it in the…
-
0
votes1
answer146
viewsHow to read and block this TXT with PHP?
How can I read a TXT file in this format to insert into an episode table? This is the structure: temporada{ numero_episodio - nome_do_episodio } A practical example: 1{ 1 - Episódio número 1 na 1ª…
-
0
votes1
answer672
viewsDivide a . txt into other . txt through the idenficator at the beginning of the line
I am trying to split a file into other smaller files, I am receiving via serversocket a file and I want this file to be divided according to the identifier that comes at the beginning of each line,…
-
0
votes0
answers49
viewsHow to compare the password via a Wordlist
How can I implement in the code so that the password is compared through a Wordlist in . txt? And print the password that is matched. In the Example below the password is hello world. $hash =…
-
0
votes0
answers451
viewsSaving txt files with c++
I am trying to create a program that saves data stored with hash in 4 different txt files, depending on the index of the hash it chooses the file to save. example: hash índice 0 = txt_0.txt hash…
-
0
votes2
answers201
viewsAdd header and footer in txt file generated via phptxt
This script generates a txt extracted from Mysql: <?php include "conexao.php"; $querymail = mysql_query("select cod,nome,tipo,valor from livros"); fopen("txt/relatorio.txt", "w+"); while($data =…
-
0
votes1
answer1439
viewsPHP Read TXT, delete lines, create new file
I want to use PHP and xamp/wamp to do the following task on my computer without the need to upload/download: I have dozens of TXT files on the computer, each TXT containing only 1 name per line, no…
-
0
votes1
answer250
viewsUpload . txt to Mysql database
Hello, I would like to upload a file .txt which meets the layout as follows (following example of two lines of the file): 9787546;488464;2016-12-11;Carlos Fonseca;carlos.fonseca…
-
0
votes3
answers5033
viewsFind Strings in Text Files in PHP
I have a file called "test.txt" inside it has several words, I have an input where I get the word inserted and I would like to check if that word is contained within this ".txt file". Someone knows…
-
0
votes1
answer437
viewsAccessing . csv file with PHP
I would like to know how I can collect and store column data in a. csv file with PHP?
-
0
votes0
answers27
viewsTxt lp model to run in Gurobi
I created an optimization model through a macro, writing a txt lp template to run in Gurobi. However, when I run on Gurobi, the model appears as infeasible. Someone knows how to help me find the…
-
0
votes1
answer115
viewsTxt displays duplicate information
What this application does: the user has to choose the right answer to the question. I have only put a question for now. After save the answer (is inside a . txt) he can see result. And there’s the…
-
0
votes1
answer66
views.txt shows no old messages, takes only the last and displays
What the implementation is: volley the result of a question (Qtd hit and Qtd error) and showcase on another screen. What the app is doing: saves everything and only displays the result of the moment…
-
0
votes0
answers35
viewsReplace word in txt using php
I have the following line in the txt file #EXTINF:-1 tvg-id="Globorj.br" tvg-name="GLOBO RJ HD" tvg-logo="https://2.bp.blogspot.com/- this line repeats over and over again. i need to open the txt…
-
0
votes2
answers1417
viewsFind the highest value of any python file
Good night Devs! I am having certain difficulties in manipulating python files. I have a TXT file with float numbers. Example: numbers.txt 10 130 20 77 23 9 10 20.26 -20.26 2 Having this data in…
-
0
votes2
answers2099
viewsHow to export an SQL table to a . txt file?
good morning! I need to insert the return data of a Select into a file . txt containing the column names and separating the data by ";" How can I do this process? Grateful From Now…
-
0
votes1
answer867
viewsHow to convert a saved string into a . txt file, to an integer number?
Example: test = open('test.txt', 'w') test.write('6000') close-up test.() How do I convert the contents of the . txt file into integer so I can do operations with it? in case you have no way to do…
-
0
votes1
answer252
viewsPYTHON - Storage of values, line by line, in txt
How do I store different values, row by row, in a txt file without deleting the previous one?
-
0
votes0
answers40
viewsRemoval of txt files in C++
I made a mergesort sorting program for a giant txt that cannot exceed such a user-defined primary memory limit, and so I had to split 1 txt into several other temps, the problem is, depending on how…
-
0
votes1
answer538
viewsoverwrite certain line of the txt file
I’m making a code where I need to delete a particular line in a text file (.txt) and put something else on that line, I’d like to know how I can do that. Example: delete 2 line admin and write user…
-
0
votes0
answers50
viewsText system of the website
I am making a website that will support several languages, but what makes it more difficult is the method of translation of each word/phrase of the site. In case I was thinking of making a system…
-
0
votes1
answer659
viewsApply data from a txt to Arraylist
I need tips on how to create (where to start, what functions to use, etc). A generic project that receives a file .txt, read the data and store the words in a ArrayList<>. I’ve already created…
-
0
votes1
answer719
viewsHow to put the value of a Php variable inside the Input in Html5
Good afternoon I need to make the value of the $x variable displayed inside the input item. below follows the code. thank you in advance. <!DOCTYPE html> <html> <head>…
-
0
votes1
answer438
viewsCompare 2 Text Files, and find equal words
there is some tool that finds equal words in 2 different text files? example: arquivo1.txt pedra cavalo torre animal fogo arquivo2.txt garoto animal festa humano fogo outworking: animal fogo it is…
-
0
votes2
answers900
viewsHow can I export output to a C text file?
I want to pass the program output to a . txt file, as I would?
-
0
votes1
answer283
viewsrecover txt file formatted with utf-8 in python
Good night! I’m having trouble recovering files. txt with python for popular lists or dictionaries, the problem is that these files do not come with uft-8 formatting. example of txt content: what is…