Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
458 views

how to split strings in objective c

How to split a string in objective-C? I am working on an short application that contains a date picker. I do display date get it from date picker and display it through a label. My main question is ...
5
votes
4answers
493 views

Why is StringTokenizer deprecated?

The Java documentation doesn't seem to mention anything about deprecation for StringTokenizer, yet I keep hearing about how it was deprecated long ago. Was it deprecated because it had bugs/errors, ...
3
votes
2answers
59 views

I want to search for a string using StringTokenizer but the string I'm looking for has a delimiter in it - Java

I have an external file named quotes.txt and I'll show you some contents of the file: 1 Everybody's always telling me one thing and out the other. 2 I love criticism just so long as it's unqualified ...
3
votes
2answers
2k views

Using string tokenizer to set create arrays out of a text file?

Hey. You may have recently seen a post by me looking for help, but I did it wrong before, so I am going to start fresh and begin at the basics. I am trying to read a text file that looks like this: ...
3
votes
11answers
2k views

How to replace tokens in a string without StringTokenizer

Given a string like so: Hello {FIRST_NAME}, this is a personalized message for you. Where FIRST_NAME is an arbitrary token (a key in a map passed to the method), to write a routine which would ...
3
votes
8answers
2k views

Replicating String.split with StringTokenizer

Encouraged by this, and the fact I have billions of string to parse, I tried to modify my code to accept StringTokenizer instead of String[] The only thing left between me and getting that delicious ...
2
votes
1answer
55 views

tokenize string

I got a string with the following format : yyyyMMdd_HHmm_ss_unitCode_(status). I need to map each component to a property of a dedicated class. I thought of defining my token with a regular ...
2
votes
1answer
50 views

StringTokenizer, JSON and comma's

I have a problem reading in strings with comma's within a JSON object within my Android project. A working JSON string is below: {"success": "[TG2301_Stoke Holy Cross, TF7439_Thornham Corner, ...
2
votes
5answers
90 views

spliting string into an array of ints

I have a string s="1,2,3,4,5" . I am using the split() method to split the string then i want to store it into an array of ints. I tried doing the following but it doesnt work. int ...
2
votes
5answers
118 views

Private Methods Over Public Methods

I was examining the StringTokenizer.java class and there were a few questions that came to mind. I noticed that the public methods which are to be used by other classes invoked some private method ...
2
votes
5answers
330 views

C++ String tokenisation from 3D .obj files

I'm pretty new to C++ and was looking for a good way to pull the data out of this line. A sample line that I might need to tokenise is f 11/65/11 16/70/16 17/69/17 I have a tokenisation method that ...
2
votes
1answer
237 views

Token replacement

I currently implement a replace function in the page render method which replaces commonly used strings - such as replace [cfe] with the root to the customer front end. This is because the value may ...
2
votes
5answers
1k views

StringTokenizer problem of tokenizing

String a ="the STRING TOKENIZER CLASS ALLOWS an APPLICATION to BREAK a STRING into TOKENS.  "; StringTokenizer st = new StringTokenizer(a); while (st.hasMoreTokens()){ ...
2
votes
1answer
359 views

trouble with StringTokenizer

I'm getting the following error message and I can't seem to figure out the problem. Would really appreciate any help. The error message reads as:- BaseStaInstance.java:68: cannot find symbol symbol ...
2
votes
5answers
1k views

Smalltalk, newline character

Does anybody know what's the newline delimiter for a string in smalltalk? I'm trying to split a string in separate lines, but I cannot figure out what's the newline character is smalltalk. ie. ...
2
votes
4answers
2k views

C# Tokenizer - keeping the seperators

I am working on porting code from JAVA to C#, and part of the JAVA code uses tokenizer - but it is my understanding that the resulting array from the stringtokenizer in java will also have the ...
1
vote
0answers
25 views

Tokenizing the content of siblings in a DOM tree

I have a plan to traverse a dom tree in postorder fashion, then when its traversing through the siblings of each depth , for each sibling group, i want to get the number of elements in the text ...
1
vote
2answers
128 views

Java - Saving StringTokenizer into arrays for further processing in other methods

I've been coding Perl and Python a lot and this time I got an assignment to code in Java instead. So I'm not too familiar with handling data in Java. My task involves having a input file where I need ...
1
vote
1answer
93 views

Tokenize a string in Korn shell

I need to Tokenize in string in ksh, I got the following script for bash. but it does not seem to work in ksh, I am pasting the script below. please help in making work for ksh. OLDIFS=$IFS IFS="," ...
1
vote
2answers
309 views

RegEx split string with on a delimeter(semi-colon ;) except those that appear inside a string

I have a Java String which is actually an SQL script. CREATE OR REPLACE PROCEDURE Proc AS b NUMBER:=3; c VARCHAR2(2000); begin c := 'BEGIN ' || ' :1 := :1 + :2; ' || ...
1
vote
3answers
120 views

Java Performance issue for long length StringTokenizer

I have a program that read and process data in a raw text String using StringTokenizer Originally the StringTokenizer contains about 1,500 tokens and the program works fine. However the raw content ...
1
vote
1answer
68 views

how to seperate a csv file using commas if it has null values and we need data corresponding to upper column?

My code is BufferedReader fileReader = new BufferedReader(new FileReader(strFileName)); while ((strLine = fileReader.readLine()) != null) { // [2011.06.28] based on ...
1
vote
2answers
233 views

Parsing Data from CSV to Array in Java

I'm trying to import a CSV file into an array that I can use within a Java program. The CSV file has successfully imported itself and the output appears on Terminal but it throws the error: Exception ...
1
vote
1answer
126 views

Why are foreign characters not read using inputStream?

I have a text file which contains data I need to preload into a SQLite database. I saved in in res/raw. I read the whole file using readTxtFromRaw(), then I use the StringTokenizer class to process ...
1
vote
1answer
169 views

String tokenizer in php

I've a strange problem that I faced finally. I've the following code to tokenize string in php $token = strtok($string, "#"); while ($token != false) { echo $token; $token = strtok("#"); } ...
1
vote
1answer
117 views

stringtokenizer and an unknown variable type

I’m currently working on a project in which I stream in a text document and tokenize it. The only problem is the types in the text document is unknown, is there any way to check what variable type it ...
1
vote
4answers
469 views

Java How to Convert Token to String?

Cant seem to figure out how to convert a Token (StringTokenizer) into a String. I have a String[] of keywords, and I read in multiple lines of text from a text file. StringTokenizer is used to chop ...
1
vote
7answers
1k views

How to find a whole word in a String in java

I have a String that I have to parse for different keywords. For example, I have the String: "I will come and meet you at the 123woods" And my keywords are '123woods' 'woods' I should report ...
1
vote
4answers
102 views

How to make “this, string format” into two tokens (“this” and “string format”)

Im reading in a file and each line is as follows Derek Simons, Jason baker Jack Smith, Rob Thomson The problem is with my tokenizer StringTokenizer st = new StringTokenizer(line, ","); ...
1
vote
1answer
110 views

java token if statement

I have a problem with an ifstatement in a StringTokenizer method i think it is due to it being a char array, I have tryed to convert it but it seems not to work any help would be aprecheated thanks ...
1
vote
4answers
637 views

Ignore parentheses with string tokenizer?

I have an input that looks like: (0 0 0) I would like to ignore the parenthesis and only add the numbers, in this case 0, to an arraylist. I am using scanner to read from a file and this is what I ...
1
vote
4answers
1k views

How to get numbers out of string?

I'm using a Java StreamTokenizer to extract the various words and numbers of a String but have run into a problem where numbers which include commas are concerned, e.g. 10,567 is being read as 10.0 ...
1
vote
3answers
633 views

Tokenize problem in Java with separator “. ”

I need to split a text using the separator ". ". For example I want this string : Washington is the U.S Capital. Barack is living there. To be cut into two parts: Washington is the U.S Capital. ...
1
vote
1answer
1k views

Java StringTokenizer, empty null tokens

I am trying to split a string into 29 tokens..... stringtokenizer won't return null tokens. I tried string.split, but I believe I am doing something wrong: String [] strings = line.split(",", 29); ...
1
vote
5answers
2k views

Does PL/SQL have an equivalent StringTokenizer to Java's?

I use java.util.StringTokenizer for simple parsing of delimited strings in java. I have a need for the same type of mechanism in pl/sql. I could write it, but if it already exists, I would prefer to ...
0
votes
3answers
44 views

Null Pointer Exception, when trying to replace characters from file

I am trying to replace character ( and ) from a file with a comma so that I can use the code below for entering data in to a JTable from a csv file. I have tried to do this by reading the file with a ...
0
votes
1answer
38 views

java StreamTokenizer

I'm using the method quoteChar('"') to treat the strings. The usual escape sequences such as "\n" and "\t" are recognized and converted to single characters as the string is parsed. Is there any way ...
0
votes
4answers
36 views

how do you get String Tokenizer to ignore text?

I have this code: public void readTroops() { File file = new File("resources/objects/troops.txt"); StringBuffer contents = new StringBuffer(); BufferedReader reader = null; try { ...
0
votes
3answers
72 views

Extracting token from a string

I've a some strings like that "paddington road" and I need to extract the word "road" from this string. How can I do that? The problem is that I need to process a list of streets and extract some ...
0
votes
1answer
33 views

StringTokenizer does not seem to work in my program - Java

I am making a program about client/server programming in which the user will input a string in the console, and the program will search through every line of a .txt file for that string, and outputs ...
0
votes
3answers
62 views

writing an interpreter in java using multiple arraylists or arrays with stringtokenizer

I'm currently working on an assignment to create a basic interpreter with 8 keywords (case insensitive) and the 4 arithmetic operators. A program in this language would look something like this ...
0
votes
3answers
54 views

parsing the content of a line using java in eclipse

Can anyone give me a example for parsing the content of the file and display the particular words from that file after the delimiters using the StringTokenizer class in java. thank you all, actually ...
0
votes
2answers
49 views

skip inserting first line of csv file

I have a method that takes data from a .csv file and puts it into an array backwards (first row goes in last array slot) however I would like the first row in the .csv file to not be in the array. ...
0
votes
4answers
90 views

String Tokenizing in java

I need to tokenize a string using a delimiter. StringTokenizer is capable of tokenizing the string with given delimiter. But, when there are two consecutive delimiters in the string, then it is not ...
0
votes
2answers
61 views

string tokenizer wrong usage in java

I believe I am not using correctly String Tokenizer. Here is my code: buffer = new byte[(int) (end - begin)]; fin.seek(begin); fin.read(buffer, 0, (int) (end - ...
0
votes
4answers
62 views

Tokenizing strings using regular expression in Javascript

Suppose I've a long string containing newlines and tabs as: var x = "This is a long string.\n\t This is another one on next line."; So how can we split this string into tokens, using regular ...
0
votes
3answers
98 views

How to randomly access nth element in StringTokenizer

Is there anyway we can directly access a certain(lets say 20th) element in a stringTokenizer. Every now and then I need only a certain element from it and do not need others, yet I have to traverse ...
0
votes
4answers
46 views

How to extract the proper String?

I have a string like this: 14.809180,56.876968,0.000000 14.808170,56.877048,0.000000 14.805100,56.877220,0.000000 14.804130,56.877338,0.000000 i.e, at the beginning there's a space and also after ...
0
votes
0answers
39 views

How to store a string into HashMap using StringTokenizer

String input = "key1=value1&key2=value2&key3=value3&key4=value4&key5=value5"; How can i store the key-value pairs into HashMap object using StringTokenizer. Please help me. Thanks in ...
0
votes
0answers
83 views

Which is slower, StringTokenizer or SQLite insert

I'm making a flashcard app, that has about 1000 words in 6 different languages (total 6000 words). They initially are in a text file, and when the app first runs, I install into the SQLite database ...

1 2