Questions tagged as 'txt'

1
answer

How to save the while result to a txt file? [closed]

Generate txt, but save only the last entry in the database and in case you need all the data. $querymail = mysql_query("select mat,nome from usuario "); while($data = mysql_fetch_array($querymail)) { $log = str_pad($data[0], 10, "0", STR_...
asked by 20.05.2017 / 20:47
1
answer

Find strings within * .txt files in C

I'm a beginner and I'm trying to make a program and C ++ that requires two functions. 1) Search in a * .txt file for a specific string; 2) By some kind of index indicate the position of this string within the file. To try to explain bet...
asked by 20.12.2016 / 02:37
2
answers

CHANGING AND READING DIRECTORIES IN C #

I'm developing a C # project, which uses python scripts as the engine (I did not use IronPython because of its limitations, I work with pandas), what I do is simply execute the script through a PROCESS in C #, passing the python.exe directory an...
asked by 13.09.2018 / 17:44
1
answer

Search for a word from Input in a TXT and find words that are in the same line in PHP

TXT file example:    John; 1       Peter; 2       Marlon; 3       Lucas; 4       etc ... Typing only the name in the Input precise the user ID appears, Input example: Marlon and when you enter only name in Input, show result i...
asked by 10.10.2018 / 18:08