Tagged Questions
1
vote
7answers
104 views
Checking the string for null or empty space
I am reading a text file abc .txt which is tab delimeted as shown below
gfh hgh thf
--- --- ---
fgh sji irj
rhf dhh fhf
kji idj ddt
and i am able to read it successfully (for all the ...
1
vote
2answers
84 views
Haskell, returning String while using IO Integer to compute that string
Today I ran into the following problem:
I can read the current screen resolution in Haskell using Xlib-bindings using a function called getScreenWidth (--> I get an IO Integer). This is working so ...
0
votes
4answers
111 views
Concatenate String and IO Integer in Haskell
I wrote a function returning the current screen width as IO Integer (working so far).
getScreenWidth:: IO Integer
getScreenWidth = do
(sx, sy, w, h) <- getScreenDim 0
...
-1
votes
2answers
48 views
How do I put values from a file into a string and calculate the values in Java?
I have a .csv file and I understand how to read it in Java, my problem is I want to be able to put the values of what is inside the file into a string and then read the string so I can calculate these ...
0
votes
2answers
35 views
How do I get values out of my file in Java and calculate them?
Okay, so I have this piece of code to take my .csv file which has these values in it.
Alice Jones,80,90,100,95,75,85,90,100,90,92
Bob Manfred,98,89,87,89,9,98,7,89,98,78
I want to take the names ...
2
votes
1answer
83 views
++ operator with String and IO String
explandDol :: String -> String -> [String] -> IO String
explandDol conclusion operators atoms =
let (ys,zs) = splitAt (head (take 1 replacement)) conclusion in ys ++ getConclusion ...
1
vote
2answers
110 views
Haskell- IO String get multiple Lines
I am trying to write a function that gets multiple string inputs and terminates on an empty line ('\n') I have following
getLines :: IO [String]
getLines = do x <- getLine
if x == ""
...
2
votes
3answers
193 views
printing ASCII codes of characters stored in C-string - explanation needed
This program converts the char to their ASCII code
Program works perfectly, but i don't understand how the line cout << (int) *p1++ << ' '; works. Еspecially *p1++ in this inner while ...
0
votes
4answers
114 views
Java splitting read lines into strings and then using them
so i have the code
public void reply(){
String fileName = "readLog.txt";
String line = null;
try {
FileReader fileReader =
new FileReader(fileName);
...
1
vote
0answers
92 views
Why “cerr << s ;” output different string to s, while console's output adds “1*1*0*1*1*1*1*0*0*1*0*1*1*1*1*0*” wizard characters?
I've debugged the program and seen s == ...
3
votes
2answers
191 views
Reading and parsing lines from a file with fgets and strtok
I'm having trouble with a fairly basic bit of code. I need to read each line from the file shown below, split it up into the 3 parts with strtok, and store each part into an array. The arrays for ...
0
votes
3answers
118 views
How to replace a string from a file?
I have just started programming and I am stuck while creating a basic File I/O program in java.
The use case: I want to check for a string in a file and append a string in the same line. E.G. The ...
1
vote
1answer
88 views
Unable to save string into pointer to array
I'm trying to save certain words into a pointer to an array (**valid_words), but I am running into an issue I do not understand. Below is the function I am trying to utilize, end result is to have ...
1
vote
3answers
105 views
PowerShell, doesn't contain method 'items'
When executing this code, I received the error below:
$filesExist = Test-Path($file)
if ($filesExist) {
$shell_app=new-object -com shell.application
$zip_file = Get-Item ...
0
votes
2answers
98 views
Guess the word: I/O C logic error
Quite a simple program:
int main (void)
{
int i = 0, length=0;
char password[] = SECRET;
char guess[10];
for (i=0; i<3; i++){
printf( "Enter the password: " );
...
0
votes
1answer
77 views
How can we scan a 100 bytes from STDIN in one go in C++
The scanner waits till we enter 100 bytes of data. So if we are redirecting a file into the
executable's input, if the file has > 100 bytes of data. I scan it at one go, rather than line by line with ...
0
votes
1answer
98 views
PrintWriter not printing out complete string
I have the following code
FileWriter F = new FileWriter("out.txt");
PrintWriter H = new PrintWriter(F);
H.print(split[split.length - 2]);
H.print("END");
When I examine the txt however, the last ...
0
votes
4answers
335 views
Using strtok in C++
I'm trying to read a file which has input(time and price) as: 12:23:31
67 12:31:23 78 [...] I created a struct which holds values of hour,
minutes and seconds. I used strtok to tokenize the individual ...
0
votes
5answers
200 views
Reading huge line of string from text file
I have a large text file but doesn't have any line break. It just contains a long String (1 huge line of String with all ASCII characters), but so far anything works just fine as I can be able to read ...
1
vote
4answers
79 views
How do I return all characters that begin and end with certain characters in Perl (Or C++)?
note: I'm running Perl 5 on Linux
I'm currently doing a project where I have to input a few words and then return words that begin with "d" and end with "e". I'm not using a pre-done list, for ...
0
votes
2answers
72 views
Why `fgets()` need a *str but `getline()` need a **str parameter?
Both of them could get a line from a stream.
The definition is below:
ssize_t
getline(char ** restrict linep, size_t * restrict linecapp, FILE * restrict stream);
And
char *
fgets(char * ...
0
votes
3answers
119 views
Read multiple variables from a string using regex
I'm trying to split a string into different variables. Something like the opposite of String.format(). I want a particular regex to match and then that portion of the string should be assigned to a ...
2
votes
3answers
130 views
Reading a text file line by line in C++
How does the code below work ? where is the counter for the for-loop and how can i reset the counter to line number 0.
for (std::string line;std::getline(ifs, line); )
{
}
0
votes
1answer
141 views
Word count program, trouble with counter [duplicate]
Possible Duplicate:
I need a program for a wordcount
User inputs a sentence and a minimum length of each word, the program then has to count the number of words in the sentence that meet ...
-3
votes
2answers
135 views
I need a program for a wordcount [closed]
I need to figure out how to make a program that counts the words in a sentence that the user inputs. The user also inputs the length that each word must be. So, if the user inputs 5 letter words, and ...
0
votes
3answers
829 views
Program to count the number of words in a sentence above the minimium letter requirements
This program asks you for the minimum length of a word and a sentence. The purpose of the program is to count the number of words in a sentence that meet the letter length requirements. Can someone ...
3
votes
4answers
374 views
Pig latin program, switch/else error
// I need help with my else if statement. If the word begins with a vowel, you add way to the end of the word. If the word begins with a consonant, you put that consonant on the end and add ay.
My ...
1
vote
8answers
1k views
JTextField getText() not working
I've been looking all over, and i cant find anyone who can solve this problem. I'm making a game, and in that game, i have editable controls. the controls window is a seperate JFrame, and when i click ...
2
votes
1answer
334 views
Read lines of file, put each line into an array, then print
I just figured out how to do this with integers so decided to give it a go with strings and got stuck.
Here is what is in my file "kw":
keyword0
keyword1
keyword2
keyword3
With this current code ...
0
votes
1answer
164 views
Isstringstream not working for integer
I'm trying to read inputs from a file which are marked with {1...9} or X. I need to separate the values and store them in a vector properly. I'm using the "sstringstream" to help me do so:
void ...
-4
votes
4answers
96 views
How to dynamically print a string based on a sensor reading
In my my program, I am simply reading wind direction from a sensor. I am having trouble printing out the English version of the direction. The basic algorithm is this:
(values are in degrees, read ...
-1
votes
2answers
233 views
Can a string hold a newline character if given from a char type?
What I mean is this. Say we read from standard input a bunch of text, and one by one we read it into a character type. If one of these characters is a newline, obviously this variable can hold ...
0
votes
3answers
145 views
How to read a line of string from a particular location
I'm working with a really really big file. I'm talking about gigabyte big.
I need to be able to read a line from a particular index as the textfile is consistently being updated. What is the fastest ...
0
votes
1answer
145 views
Want to create many different files, but with different names
I need to create a bunch of different files and I want to name them something like:
"signal1.dat", "signal2.dat", "signal3.dat", ... , "signal100.dat"
This is what I have so far
std::stringstream ...
0
votes
2answers
521 views
Why does getline return empty lines if none exist
I have a file containing the following lines:
5556
0 bla.dxf
1 blub.dxf
2 buzz.dxf
The numbers and text are seperated by a singular tab each, there is no whitespace character after 5556. The ...
2
votes
1answer
99 views
Why does the printwriter split my message into two strings?
I am trying to create a java program to cause a buffer overflow in the program Vulnserver.
Whenever I send a string with more than 4094 characters, it receives the command the command as two ...
0
votes
2answers
59 views
Regarding excluding of commented lines
I was trying to develop the application that count the line of code my source file is ..
package asd;
public class abv {
/**
* @param args
*/
public static void ...
-4
votes
4answers
84 views
Regarding line of code
Modified the code this time the objective to count the line of code was perfect below is the piece of code..
/**
* @param args
* @throws FileNotFoundException
*/
private static ...
-1
votes
1answer
136 views
Want to remove the whitespaces, with java built in methods
I have developed an application that read how many files are there in a java package inside the java project and count the line of code in those individual files to for example in a java project if ...
3
votes
4answers
6k views
How to read comma separated values from text file in JAVA?
I have got this text file with latitude and longitude values of different points on a map. I want to store these coordinates into a mySQL database using hibernate. I want to know how can I split my ...
1
vote
1answer
422 views
Python - Processing inputs from STDIN without converting to integer(SPOJ INOUTEST)
I was trying to solve this http://www.spoj.pl/problems/INOUTEST/ problem.
INPUT:
The first line of input contains a single integer N (1 ≤ N ≤ 106), denoting the number of lines to follow. Each of ...
2
votes
6answers
671 views
How to process a string with 823237 characters
I have a string that has 823237 characters in it. its actually an xml file and for testing purpose I want to return as a response form a servlet.
I have tried everything I can possible think of
1) ...
0
votes
2answers
72 views
Turning strings into code?
So let's say I have a string containing some code in C, predictably read from a file that has other things in it besides normal C code. How would I turn this string into code usable by the program? Do ...
0
votes
2answers
133 views
Is it possible to take a string and put it in the System.in?
I wanted to know if there was a way to take a String - let's say:
String str = "blabla";
and do:
System.in.setText(str);
I know this does not work - I wanted to know if there was a way to do ...
2
votes
4answers
557 views
Update strings in a text file at a specific location
I would like to find a better solution to achieve the following three steps:
read strings at a given row
update strings
write the updated strings back
Below are my code which works but I am ...
2
votes
1answer
225 views
Java - Getting line from file
Below is my current function. It works fine and returns true if the lineToCompare is found.
public static int checkrank(String lineToCompare){
try{
// Open the file that is the first
...
0
votes
3answers
431 views
Putting gzipped data into a script as a string
I snagged a Lorem Ipsupm generator last week, and I admit, it's pretty cool.
My question: can someone show me a tutorial on how the author of the above script was able to post the contents of a ...
-2
votes
2answers
1k views
Replace all occurrences of String in file (Java) [duplicate]
Possible Duplicate:
Replace all occurrences of substring in a string - which is more efficient in Java?
I'm trying to replace all occurrences of \t (tab) with four spaces in a file.
I've ...
1
vote
1answer
77 views
How do I access both binary and text data for email processing with Python 3?
I am converting a Python 2 program to Python 3 and I'm not sure about the approach to take.
The program reads in either a single email from STDIN, or file(s) are specified containing emails. The ...
0
votes
2answers
876 views
Hex String to Image
I have a hex string which looks like:
String hexImage ="0xFFD8FFE000104A46494600010200006400640000FFEC00114475636B79000100040000003C..."
Which I need to convert to an image using Java. I've tried ...
