A token is a string of characters, categorized according to the rules as a symbol (e.g., IDENTIFIER, NUMBER, COMMA). The process of forming tokens from an input stream of characters is called tokenization, and the lexer categorizes them according to a symbol type. A token can look like anything that ...
0
votes
4answers
2k views
Javascript syntax error unexpected token illegal
function queue_instructions(){
var input_message = "Commands
w? Shows whos on the waitlist
w+ Adds yourself to the waitlist
w- Removes yourself from the waitlist
w++ Moves ...
0
votes
1answer
1k views
Auth token facebook php error
It's weird because on my canvas page for my facebook app I get all these php errors about my auth_token and then it redirects and works as it should. Can someone help me figure this out por favor? ...
0
votes
1answer
1k views
using tokeninput jquery plugin on more than one input on a page
I'm using the jquery tokeninput plugin from loopj.com Here is my JS File:
$(document).ready(function() {
// Token input plugin:
$("#issuer").tokenInput("/issuers.json",{
...
0
votes
1answer
1k views
Saving Facebook access_token in NSUserDefaults on iOS
iOS beginner here. I'm using the following code to save my facebook accessToken and expirationDate in NSUserDefaults:
facebook = [[Facebook alloc] initWithAppId:@"225083222506272"];
[facebook ...
0
votes
1answer
160 views
Mediawiki parsing in ANTLR: processing ' tokens
I'm trying to write a grammar to parse Media wiki's wiki syntax, and after this the Creole syntax too (unfortunately an existing Creole grammar doesn't work in Antlr 3).
My issue right now is being ...
0
votes
0answers
406 views
How to make the tokenizer detect empty spaces while using strtok() [duplicate]
Possible Duplicate:
How to make the tokinezer detect empty spaces while using strtok()
I am designing a c++ program, somewhere in the program i need to detect if there is a blank(empty ...
0
votes
2answers
2k views
How to use device tokens in different ways in iphone?
In my application i am going to use pushNotification. So in that case how can i use device tokens in different ways?
Let me elaborate more on this side.
Whenever i run my application at that time ...
-1
votes
2answers
87 views
Getting the error "expected identifier or '(' before '{' token in C [closed]
Any help would be great!
#include <stdio.h>
#define pi 3.14159
int main()
{
float r;
char PI;
/*Program for circumference. */
printf(" This is a program that will calculate ...
-2
votes
1answer
388 views
C++ I'm stuck filling this BST with its proper values
I have created a BST full of WordInfo objects that have a vector to point out which of the other WordInfo objects is a synonym or antonym. Each word is identified by an integer on its source file, ...
-3
votes
2answers
74 views
How can I manage and a csv file in c?
i have a csv file and which look like this :
1;53453;45847865
1;37567;53687686
.
.
.
.
n. 1;999768;5645644
and i want to open the file , read it and then split each line to 3 tokens which will ...
-3
votes
1answer
99 views
I have an issue using tokens, scanning multiple inputs and executing them at the same time
I am having an issue, i need to scan different inputs that the user will insert on the screen at the same time. For example i have a sort of a menu that is printed on the screen and the user will ...
