A library for command line editing, or a function to read one line of text.

learn more… | top users | synonyms

0
votes
4answers
41 views

read from a file, split the line and store in an array JAVA

Okay guys first and foremost let me say that I am a NOVICE when it comes to programming in JAVA. I am teaching myself, so with that said please bear with me as I am doing the best I can with what I ...
0
votes
1answer
55 views

How to parse a text file and create a database record from it

I'm trying to basically make a simple Test Generator. I want a button to parse a text file and add the records to my database. The questions and answers are in a text file. I have been searching the ...
-4
votes
0answers
25 views

How to start reading lines from a text file after a specific string is found [duplicate]

I'm trying to extract specific data from a text file. The issue is I need to discard/ignore all the lines before the string ~ end of syllabus in the text file. If I can skip those 200 lines I can ...
-1
votes
4answers
70 views

How to discard lines in text file until certain string is found

The file begins with about 200 lines of background information that i don't need. Im trying to skip/ignore those 200 lines until a string is found. Once this string is found I want to be able to ...
0
votes
2answers
48 views

Read from file on JButton click

I'm having an issue with my java project. I've done my homework through searches and reading and I can't seem to find what I need. What I need to be able to do is each time I click a button, read a ...
0
votes
1answer
25 views

getting ipython3 to use readline in ubuntu linux

I have a python3.3.1 installation on ubuntu (though the default is python2.6.5).I generally work using the virtualenvwrapper. I wanted to install ipython which supports python3.So I did this ...
0
votes
1answer
36 views

Communicate with subprocess without waiting for the subprocess to terminate on windows

I have a simple echoprocess.py: import sys while True: data = sys.stdin.read() sys.stdout.write("Here is the data: " + str(data)) And a parentprocess.py from subprocess import Popen, PIPE ...
0
votes
3answers
32 views

Error Accessing namespace Library c#

This is more of conceptual question, since I am new to C# trying to get a simplified understanding. My is trying to read lines from text file, which works fine but I am trying to implement following ...
1
vote
0answers
12 views

Python : correct use of set_completion_display_matches_hook

I'm trying to write a function to display a custom view when users press the tab button. Apparently "set_completion_display_matches_hook" function is what I need, I can display a custom view, but the ...
0
votes
2answers
57 views

c# reading text file with contention from other instances

I have a app that reads data from a text file using: CRD.reader = new StreamReader(fn,Encoding.UTF8,true,1024); CRD.readLine(); BUT I run 16 instances of this app in ...
1
vote
1answer
24 views

Reading a paragraph from the command line on java console program

The while loop in the following program does not terminate so I can't get the output in the last line that tries to print the variable paragraph to console. There are similar problems but the ...
0
votes
3answers
66 views

Python readline empty lines

I would like to read serial port with python, and print result with readline, but I'm getting empty lines between all result lines. Can you tell me how can I delete all empty lines? My code: ...
0
votes
1answer
17 views

Distinguish methods from attributes in ipython tab completion

Is it possible to configure IPython such that the tab completion allows me to visually distinguish between attributes and methods of an object? Probably the nicest way do this is by color, similar to ...
1
vote
1answer
24 views

History auto complete in gnuplot

In gnuplot, I type gnuplot> set style data lines Then I run few other lines: gnuplot> plot "./data/traj1.dat" u 1:4, "" u 1:6, "" u 1:9, "" u 1:11, "" u 1:13, "" u 1:15 gnuplot> plot ...
1
vote
1answer
50 views

Read Serial Data

I am bashing my head with this. I am writing a serial app for a machine that tests blood. It sends information on a line basis terminated with \r\n. The issue is that every other time I run the ...
1
vote
1answer
47 views

Java/Scala Strange behaviour of readline

i got a very strange and urgent problem. I hope you can help me. I am trying to read the result of a command i am executing. The Code never reaches the println-Statement. It is just "hanging up" the ...
0
votes
0answers
34 views

How to add readline library to an ARM based processor runs Android?

I want to use readline lib on emmbbeded linux (an Android platform), I want to write something like this. basically I need to include these .h files in my c code: #include ...
0
votes
1answer
42 views

Qt: c++: how to read a “.dat” file

I have a ".dat" file that contains "1"s and "-1"s as a sequence in a vertical representation (i.e.: each element is in a single line.). I am trying to read the file as follow: char buf[30]; QFile ...
1
vote
1answer
35 views

Reading Stream after using enableReceiveTimeout

I am currently working on a Java project, one of the aims of which is to display current position of the user on a map. After code completion, I realized that there is a possibility of the user ...
2
votes
1answer
50 views

While read line, awk $line with multiple delimiters

I am trying a small variation of this, except I telling awk that the delimiter of the file to be split based on the 5th field can either be a colon ":" or a tab \t. I do the awk -F '[:\t]' part alone, ...
1
vote
2answers
108 views

java.io.BufferedReader.readLine() is nonblocking

I have a problem with readLine() in Java. I have a server and a client. From client I want to send a message to the server. The problem is that first, the client has to insert a text into a JTextField ...
-2
votes
2answers
63 views

How Can I read From Line number() to line Starts with in C#

Let's say I have text file like this <pre>---------------- hPa m C --------------------- 1004.0 28 13.6 1000.0 62 16.2 998.0 79 17.2 992.0 131 18.0 ...
0
votes
1answer
30 views

node.js readline - write data appears in input

I've got a very basic readline implementation which seems to have a problem that when I write the written data appears in input and raises a 'line' event. This is all in a standard linux rxvt window. ...
0
votes
1answer
29 views

i need to read specified line from text file in adroid

Hi i need to read line number 3 from text file for example i have written this code but, its read first line public void GetFrom_Text(){ String []message=null; BufferedReader br=null; String ...
0
votes
1answer
31 views

IPython's history-search-backward not working as desired

IPython's history-search-backward feature is one of my favorite features. history-search-backward allows you to type part of a command and then search backward through your readline history for ...
1
vote
2answers
68 views

ReadLine(); between values

I made a dice game and just a few moments ago asked for a solution here, which i got. it made a new problem and in which i cant seem to find a answer. Heres the code. using System; using ...
0
votes
1answer
62 views

While read line, awk $line

I have a file that contains a list of numbers. I have a second file with various entries and several fields each. What I want to do is to get all the lines whose 12th field is equal to the 1st ...
1
vote
1answer
31 views

send a number with sockets

I tried to send an integer to the server. This is my client code out = new PrintWriter(_socket.getOutputStream(), true); Random rand = new Random(); int n = rand.nextInt(50) + 1; ...
1
vote
1answer
47 views

How to remove /n from readline() in Python?

a = open('expressoes.txt', 'r') i = 0 j = 0 pilhaop = [] string = [] b = a.readlines() while j in range(len(b)): fixa = b[j] print b[j] while i < len(fixa): ...
0
votes
1answer
62 views

can't implement readLine properly in java

I have a text document that is read by a filereader method the text document looks like 1/2 0 1/6 6/11 1/6 2/10 The following code I need to read both lines of text String line = br.readLine(); ...
0
votes
2answers
83 views

Streamreader doesn't read data in text file C#

I have two classes "allmethods.cs" and "caller.cs" I have two methods in the "allmethods.cs" class which are "WritingMethod" and "ReadingMethod" The program should write and read from a text file. ...
0
votes
1answer
54 views

UTF-8 files read in python will line break at character \x85

I had a problem where I had a playlist of songs that would not correctly linebreak when read using codecs.open(filename, encoding='utf8'). Every two lines in the playlist files contains the metadata ...
8
votes
1answer
192 views

R command history: how to configure up-arrow to treat “multiline, brace-enclosed input” as one line?

This question is about configuring the R console to behave like a bash shell when it comes to navigating the command history. It is somewhat related to the ?history. For brace-enclosed multi-lines, ...
3
votes
3answers
57 views

Reading a file line by line into elements of an array in Python

So in Ruby I can do the following: testsite_array = Array.new y=0 File.open('topsites.txt').each do |line| testsite_array[y] = line y=y+1 end How would one do that in Python?
0
votes
3answers
30 views

LineNumberReader Skips the First Line of the file

I am reading the First 6 Lines of a text file with this code: File finish = new File("C:/ABC Statements final/"); File[] finf = finish.listFiles(); String[] filenames1 = ...
1
vote
0answers
71 views

Undeclared identifier when passing struct using pointers

I have the following method to read a file into a struct, but, the program is bombing when it gets to the write file method as the curr variable is empty. I have added a null check when the variables ...
0
votes
1answer
45 views

readline tries to be intelligent on completion. how to disable?

I was inserting " and pressed tab. I expected to get text == "\"" in my completer function. But I got the empty string. Similarly, when I enter a, or so, I also just get the empty string in my ...
0
votes
2answers
25 views

Button text and string from text file (from asset) should be the same, but not in Android

I would like to make a quiz program. The questions are in a text file in asset folder. The answers are also in the asset folder called the number of the question (for example: the first question ...
-2
votes
6answers
396 views

Read text file and split each newline into a string array

So basically I'm reading a text file that has a bunch of lines. I need to extract certain lines from the text file and add those specific lines into string array. I've been trying to split each ...
-1
votes
1answer
28 views

solve the memory error when reading the line number of files in python?

I am trying to read some text files in python, count their line number and finally sum these counting. when the code runs for each file it works until it reaches to a file which has bigger size and I ...
0
votes
1answer
40 views

`set editing-mode vi` in Python readline (os x)

Trying to beef up my regular python console, I wanted to add vi-style editing. 1st thing: python is not reading ~/.inputrc if I understand well. Then, I tried to do (through ~/.pythonrc.py): import ...
0
votes
0answers
22 views

how the completion function work in readline

I've checked a few examples including http://pymotw.com/2/readline/ class SimpleCompleter(object): def __init__(self, options): self.options = sorted(options) return def ...
0
votes
2answers
197 views

Python Serial: How to use the read or readline function to read more than 1 character at a time

I'm having trouble to read more than one character using my program, i cant seem to figure out what went wrong with my program, as i'm very new to python. import serial ser = serial.Serial( ...
0
votes
0answers
29 views

Use mouse to move cursor in terminal

Suppose I write a line like this: find somedir -flag1 opt1 -flag2 opt2 -flag3 opt3 -flag4 opt4 -flag5 opt5 -flag6 opt6 -flag7 opt7 -flag8 opt8 -flag9 opt9 | xargs command ... then I ...
0
votes
2answers
67 views

Trying to read information in a file into two lists in Python

I think this is a relatively simple question but i'm a beginner and having trouble. I have to read in information from a text file into two lists in python. This is an example of what the text file ...
1
vote
0answers
27 views

How to suggest files with tab completion using readline?

Within the Bash shell, I can use tab-completion to use suggest file and directory names. How can I achieve this with nodejs and readline? Examples: /<Tab> should suggest /root/, /bin/, etc. ...
0
votes
4answers
50 views

Readlines outputting all sentences within a for loop

I'm trying to output sentences in a file in the format of: line 1: first sentence, line 2: second sentence, line 3: third sentence, etc. Yet the code I'm inputting is giving back as so: line 1: ...
-1
votes
2answers
44 views

How do I use a specific line of a text file in python?

My text file is this: 467 119 635 231 234 858 786 463 715 745 729 574 856 806 339 106 487 798 791 392 916 177 115 948 871 525 As you can see, there are three separate lines with different number ...
3
votes
1answer
97 views

Python, “filtered” line editing, read stdin by char with no echo

I need a function that reads input into a buffer as raw_input() would, but instead of echoing input and blocking until returning a full line, it should supress echo and invoke a callback every time ...
0
votes
1answer
33 views

BASH/Readline Verbatim Null Character

I'm trying to understand exactly who among the set of TTY, kernel, line discipline, and shell actually deals with any given part of my input. In particular, I've been working through this article: ...

1 2 3 4 5 11