0
votes
0answers
33 views

Android - get and paste ACCESS_TOKEN?

I know there are many similar questions in this forum, but none helps me to solve my issue. So I like to get a logout URL for facebook. I know this one have to look like this: ...
1
vote
1answer
43 views

Taking a string of letters and placing them into an array

I have a string, "ABCDEFG" and I want to make an array that would look like this: array[0] = "A" array[1] = "B" array[2] = "C" etc. Do I have tokenize the original string, or is there some type of ...
0
votes
1answer
62 views

md5 hash key for token value

Hello I need your help I've been working on this since yesterday with no success at all. I'm creating an MD5 string for token value but it's not passing at all below are the information. Must be a ...
-4
votes
1answer
77 views

Extract tokens from string

I have a html file, with unknown ammount of tokens. The keywords will be assigned to some data later by the user. I want to determine how much token does the html contain. Tokens can look like : ...
2
votes
6answers
140 views

C - Unexpected Segmentation Fault on strtok(…)

I am using strtok(...) of the library and it appears to be working fine until the end condition, where it results in a segmentation fault and program crash. The API claims that strtok(...) will ...
1
vote
2answers
152 views

Tokenizing input from getline

I'm trying to use getline() to take input from the keyboard, store it in a string, tokenize it, then print the tokens. When I run this, I get a Segmentation Fault error on the the last iteration (the ...
2
votes
1answer
141 views

Tokenizing a string in C using strtok()

I'm trying to write a function that takes an HTTP request and extracts a small amount of the data. My function looks like this: char* handle_request(char * req) { char * ftoken; // this will be a ...
0
votes
1answer
100 views

fill two dimensional array with parts of a string

I want the parts of the string I broke to be entered to a two-dimensional array, for example: String: "one day" Result in array: Col1: one Col2: day The question is, how do I fill the array with ...
2
votes
4answers
83 views

Remove spaces outside “” from String

How can I remove all whitespaces that are outside "" on a String? For example: 0507 ? "Y e a" : "No" Should return: 0507?"Y e a":"No" Thank you.
0
votes
1answer
59 views

how to regex the string between two tokens and return string without the tokens?

Fighting with regex.... I'm using this to find pieces of HTML-string between certain elements: for (i = 0; i < 2; i += 1) { target = block[i]; // like BODY or HEAD regex = RegExp('<' ...
-3
votes
2answers
118 views

Converting a word into a token in python [closed]

I am attempting to convert a word in string form to a token so that it can be tagged by a tagger I have built. Due to the way the program is set up I need to be able to take a string of a single word ...
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 ...
1
vote
3answers
117 views

Shell Script - Printing Tokens

Let's say a variable: word="Hi there, how are you?" How would I print it so that the output would be: Hi there, how are you? So far, I've only learn the grep, cut, find, tr commands
0
votes
2answers
166 views

Better way to change string “abc..z” to “bcd..a”?

I created this code that looks at a string token and formats it so that every character is moved along by one. The characters are all lowercase and from a to z. So if my input is abcz Output is bcda ...
-2
votes
2answers
480 views

Java String.split(“\\s+”)

I am trying to parse some output. The output is as follows: raidz1-0 ONLINE 0 0 0 My code is as follows: String line = "\traidz1-0 ONLINE 0 0 0"; String[] tokens = ...
0
votes
2answers
377 views

How to split a string and new line using strtok

I am trying to split my string and the (\n)new line and want to get the new string without \n.My code is as below.Thanks. token = strtok(NULL,"") The above snippet will store "some string and \n" ...
1
vote
1answer
145 views

Unable to split the String in java

I have a string 218~2~4~6^219~1~3~3^218~5~2~2^217~10~3~8^, I want to split the string by using character with ^ . I have tried like this String mainString = ...
1
vote
2answers
80 views

String.split not operating as expected

So I'm trying to split a string String[] tokens = coded_string.split("\\)|\\(|\\,|\\s+"); so if the coded string is students = load(classlist.csv) all tokens are fine token[0] = "students" ...
1
vote
2answers
101 views

Tokenizing a String

What I'm trying to do is input a date following this format Wednesday 7:05 PM Then separate it into tokens to put in a struct i have. My main problem is the stringstream object i am using doesn't ...
2
votes
4answers
932 views

How to split string in C without using strtok

#include <stdio.h> int main() { char string[] = "my name is geany"; int length = sizeof(string)/sizeof(char); printf("%i", length); int i; for ( i = 0; i<length; i++ ) { ...
0
votes
2answers
222 views

Java: Match tokens between two strings and return the number of matched tokens

Need some help to find the number of matched tokens between two strings. I have a list of string stored in ArrayList (example given below): Line 0 : WRB VBD NN VB IN CC RB VBP NNP Line 1 : WDT NNS ...
0
votes
5answers
246 views

Most of string gone after splitting with strtok?

e: Thanks everyone, didn't realize strtok actually modifies the string itself. Hopefully I'll be less stupid in the future. I have recently taken up learning C++ from a book. I am now at the chapter ...
1
vote
1answer
930 views

Parsing Strings with JavaCC

I'm trying to think of a good way to parse strings using JavaCC without mistakenly matching it to another token. These strings should be able to have spaces, letters, and numbers. My identifier and ...
0
votes
0answers
45 views

Java or VBA: how to scan for certain terms

I'm trying to figure out the best way to identify certain terms in a list, but only if it contains that exact term. The complicating factor is that the term could be expanded inside a list of terms ...
1
vote
3answers
86 views

Distinguishing string being parsed using String Split

I need to parse a line that is in a similar format as following: s = "Jun 21 09:47:50 ez-x5 user.debug if_comm: [TX] 02 30 20 0f 30 31 39 24 64 31 30 31 03 54 "; I am splitting the line with [TX] ...
1
vote
2answers
309 views

PHP how to write a template engine?

Edit: Maybe I should make this part clear. A user is writing the template. So I want the syntax to be simple, and I can't trust them with powerful template engines. So, I need a template engine that ...
3
votes
1answer
384 views

C++: Extract Tokens from String using only STL

I want to extract tokens from a given fraction expression, which is passed as a string, Fraction s("-5 * 7/27"); Where the extracted tokens hold either a single operator or a sequence of digits as ...
6
votes
3answers
4k views

C++ Tokenize String

I'm looking for a simple way to tokenize string input without using non default libraries such as Boost, etc. For example, if the user enters forty_five, I would like to seperate forty and five using ...
1
vote
1answer
164 views

Tokenizer in java dealing with spaces and apostorophes

I was wondering if there is any way in Java to tokenize an string by spaces, BUT if there are some words between apostrophes, take it as "one word"... so for example, if I have: This "is a great" ...
0
votes
2answers
376 views

Getting values from a string

I'm making a simple paint program and am stuck with getting a certain part of a string. Here's the trouble - When I save the 9-panel image, it stores the RBG values of each panel to a .txt file. ...
0
votes
1answer
818 views

Android String.split() and/or StringTokenizer() not working in While loop

This is very odd... BufferedReader br = new BufferedReader(new InputStreamReader(openFileInput("file"))); String s; while ((s = br.readLine()) != null) { String[] sa = s.split("a"); String a ...
3
votes
3answers
4k views

DOS batch script to parse CSV file and output a text file

I've seen a response on another page (http://stackoverflow.com/questions/6470570/help-in-writing-a-batch-script-to-parse-csv-file-and-output-a-text-file) - brilliant code BTW - : @ECHO OFF IF ...
0
votes
2answers
110 views

count the line number of a file, when passing file data to a string tokenizer in java

If I want to copy the content of a text file using a string tokenizer let's say like this: StringTokenizer strk = new StringTokenizer(new String(buffer), Constant.DELIMS,true); And then I want to ...
0
votes
2answers
1k views

c++ scanner.h scan content between double-quotes as a token: not skipping spaces inside quotes

I'm trying to get the content between a double-quote to count as 1 token for an assignment. For example: "hello world" = 1 token "hello" "world" = 3 tokens (because space counts as 1 token) I ...
0
votes
4answers
74 views

check the value of a word inside a string

I have a string like String example = "Tag: something Id: somethingElse Score: 0.8"; How can i check if Score is higher/equal/lower than 0.
4
votes
1answer
3k views

Split a string into words by multiple delimiters in C++

I have some text (meaningful text or arithmetical expression) and I want get it and put different words into a vector. If I had certain delimiter, I'd use: std::stringstream ...
0
votes
2answers
148 views

tokenizer null character

inputValue = "111,GOOG,20,475.0" StringTokenizer tempToken = new StringTokenizer(inputValue, ","); while(tempToken.hasMoreTokens() == true) { test = token.nextToken(); counterTest++; } ...
0
votes
4answers
389 views

How to tokenize a string without boost?

I am working in C++. I have the following string: 2011-07-01T14:32:39.1846579+02:00 Can someone tell me how can I extract 2011-07-01 14:32 in another string?
0
votes
2answers
586 views

php string tokenizing

Wondering if I could get some advice on tokenizing a string in php since Im relatively new to the language. I have this: $full_name = "John Smith" I want to use a string function that will extract ...
0
votes
1answer
1k views

How can I detect if a string contains a URL in java? [duplicate]

Possible Duplicate: Java-How to detect the presence of URL in a string. Let's assume I have the string: "I like visiting http://www.google.com and www.apple.com" How can I tokenize this ...
0
votes
1answer
145 views

Simple string templating in ASP.NET MVC

I have a bunch of database log messages containing references like Invoice 45 or Case 123 which I want to parse to output links to the appropriate invoice or case when displaying to the user. These ...
1
vote
2answers
126 views

In C++, is it possible to use a string literal as a macro name?

Here's my scenario: I have a set of source files that I'd prefer to not modify, but I'd like to replace some of the string literals with other values. Here's an example: #define "oldString" ...
3
votes
1answer
409 views

Grab x number of words before and after a given keyword?

How can I go about grabbing [x] number of words before and after a given keyword in a string in PHP? I am trying to tokenize results from a mysql query tailored to the keyword as a snippet.
2
votes
2answers
422 views

problem string recursion antlr lexer token

How do I build a token in lexer that can handle recursion inside as this string: ${*anythink*${*anything*}*anythink*} ? thanks
4
votes
5answers
11k views

string tokenizer in Java

I have a text file which contains data seperated by '|'. I need to get each field(seperated by '|') and process it. The text file can be shown as below : ABC|DEF||FGHT I am using string ...
11
votes
2answers
655 views

how do you split a string with a string in C#

I would like to split a string into a String[] using a String as a delimiter. String delimit = "[break]"; String[] tokens = myString.Split(delimit); But the method above only works with a char as a ...
0
votes
2answers
373 views

Display String Tokens

I have String tokens separated by $$ which are list of particulars which are further separated by comma (e.g. Peter Adams,255 Jhonson Street, NY,74322 $$ Mary Luther,54 Eglinton Ave.,Mississauga,ON ...
6
votes
5answers
5k views

How to split a text file into words?

I am working on a assignment where I am supposed to read a file and count the number of lines and at the same time count the words in it. I tried a combination of getline and strtok inside a while ...
6
votes
6answers
3k views

Splitting String C++

Hi in C++ if i have a string, how can I split this into tokens?