Process of converting a sequence of characters into a sequence of tokens.

learn more… | top users | synonyms (2)

3
votes
2answers
69 views
+100

Parsing Python function calls to get argument positions

I want code that can analyze a function call like this: whatever(foo, baz(), 'puppet', 24+2, meow=3, *meowargs, **meowargs) And return the positions of each and every argument, in this case foo, ...
1
vote
1answer
39 views

Yacc and Lex error in parsing expressions which use binary operators

I am new to Lex and Yacc and I am trying to create a parser for a simple language which allows for basic arithmetic and equality expressions. Though I have some of it working, I am encountering errors ...
0
votes
0answers
6 views

Orion Editor tokenizer

I have a tokenizer in ace editor which lets me move forward and backward in ace editor as in this jsfiddle http://jsfiddle.net/samarjit/W3FQz/. editor.selection.on("changeSelection", function(){ var ...
-1
votes
1answer
68 views

Regex expression to search plus sign in python

I am unable to detect + or ++ or += in my expression I already tried these expressions but none of these are working r'\+' r'\+\+' r'[\+]' r'(\+') I am using Python Lex EDIT (additional code ...
0
votes
1answer
24 views

An explanation of an ANTLR syntax required for JSON grammar

At the moment I'm investigating the JSON ANTLR grammar from ANTLR project wiki: http://www.antlr.org/wiki/display/ANTLR3/JSON+Interpreter String : '"' ( EscapeSequence | ~('\u0000'..'\u001f' | ...
0
votes
0answers
16 views

ANTLR3 (ANTLRWorks 1.5) does not generate (Java) code

I'm trying to generate a Java Lexer/Parser from an ANTLR 3.5 grammar file. I don't get any errors, but only two warnings: [00:21:39] warning(200): soap.g:11:6: Decision can match input such as ...
0
votes
1answer
66 views

How to detect a given word in sentence using regex in python

I am trying to detect a given word, for example in the following text: for i in range(40): I can easily detect all identifiers but it detects for as identifier not as "for". I use r'[for]' as regex ...
0
votes
1answer
36 views

Java: Lexical analysis for an IDE [closed]

So I'm wanting to create an IDE and got stuck at the part of highlighting different parts of the code in different colors depending on what it says, for example: if its "if" highlight it blue, if its ...
1
vote
3answers
91 views

Extracting string constant from source code in a string using regular expressions in Python [closed]

How can I get a string constant from source code in a string? For example, here is the source code I am trying to process: var v = "this is string constant + some numbers and \" is also included " ...
0
votes
1answer
19 views

Falcon language reserved keywords

I'm writing a compiler for Falcon (as a course project for my graduate level compiler's class). Currently I'm working on lexical analyser. In that I need to figure out whether a lexeme is a keyword or ...
0
votes
0answers
18 views

Text Editor interface: parsing/tokenizing

I need help understanding how text editors process input when determining the display of an interface feature. For instance, Notepad++ 's indent guide: would you say that the user input is parsed ...
0
votes
1answer
42 views

getnextChar function beginner [closed]

I want to write a function which gets next character but i don't know what to write in the case when end of file is met ! the function goes like void Class::getNextChar() { ...
1
vote
1answer
33 views

jFlex error: class throws java.io.IOException

I have written a very simple file with specification shown below to to tokenize words: %% %class Lexer %unicode WORD = [^\r\n\t ] %% {WORD} {System.out.println("Word is:"+yytext());} . ...
1
vote
1answer
69 views

compiler design - lexical analysis: how many columns does a \t take?

I must keep the information of a token for my lexical analyzer, for example its row and column. If I come across some source code like this: \t \t int myInt; , how can I know the column of the token ...
0
votes
1answer
26 views

Multiple attributes in bison

I am doing semantic analysis in bison and i want to use multiple attribute associated with a token. A related part of my code is: %union semrec { int Type; char *id; } %start prog %token ...
0
votes
1answer
33 views

Building a Search Engine Based on Lexical Frequency Tables/Distributions?

I am admittedly a "n00b" when it comes to a lot of web development know-how, so please bear with me. I have an idea for a website, and part of that idea involves scanning particular webpages, and ...
0
votes
1answer
49 views

Matching HTML-style comments with lex/flex

I wish to match COMMENT as <!--C--> so: It starts with <!-- Ends with the first --> C - could be anything (including tabs, line breaks, etc.) I got a problem with ending in the first ...
0
votes
0answers
35 views

Lucene 4.1 : How search text with HunspellStemmer and get suggestions?

I want to parse text files with lucene using HunspellStemmer to check for spelling errors. I will use Hunspell dictionaries that's why I want to use HunspellStemmer. At this point I'm not sure how I ...
1
vote
1answer
43 views

org.apache.solr.analysis.BufferedTokenStream class moved or dropped in solr 4.x?

I am upgrading from solr 3.6.2 to solr 4.1.0. I encountered this problem when I used theBufferedTokenStream class. Is this class dropped, moved or renamed in solr 4.1.0? The error I came across is: ...
1
vote
2answers
115 views

Representing any universal character within the range of 0x00 to 0x7F in C++?

I am writing a Lexer in MSVC and I need a way to represent an exact character match for all 128 Basic Latin unicode characters. However, according to this MSDN article, "With the exception of 0x24 and ...
0
votes
1answer
21 views

Lexical analysis of a list

I have to make a lexer for a language that has (among other things) lists of the form [1,2,3] for example or ['c','s','q','t']. I don't really understand whether I need to match the list at the ...
0
votes
4answers
140 views

Lucene 4.1 : How split words that contains “dots” when indexing?

I'l trying to figure out what I should do to index my keywords that contains "." . ex : this.name I want to index the terms : this and name in my index. I use the StandardAnalyser. I try to ...
1
vote
1answer
55 views

Handling errors in lexical analysis

I'm writing a lexical analyzer and I would like it to output meaningful and accurate error messages. Like the exact line and column where errors occurred. What's the appropriate way of handling errors ...
1
vote
2answers
262 views

Tips for creating Context free grammar

I am new to CFG's, Can someone give me tips in creating CFG that generates some language For example L = {a^m b^n | m >= n} What I got is So -> a|aSo|aS1|e S1 -> b|bS1|e but I think ...
0
votes
1answer
64 views

Matching with “if” in flex lexical analyzer

I am trying to write a piece of code in flex that matches "if" keyword. When i write if printf("Saw an if"); it matches but it also matches, for example if the input is abcdifcd, output becomes ...
3
votes
1answer
37 views

How to match with smaller than operator in flex?

I am trying to match the strings in a file with the regular expressions in flex. For example, to match with assignment operator, I write: = printf("tASSIGN token"); But when I want to match with ...
0
votes
1answer
25 views

The question mark (?) in flex

I cannot understand what the question means in a regular expression in flex. For example, in my notes it says: [ a-z ]? corresponds to 0 or 1 repetition (used for optional parts). and another ...
4
votes
2answers
88 views

For this simple program what will be the output just after lexcial analysis?

For a simple C program like : #include<stdio.h> int main(){ int first,second,sum; first = 10; second = 20; sum = first + second; printf("%d\n",sum); } what will be the output ...
1
vote
1answer
26 views

Meaning of ^ in flex

I have got a question about flex. In my notes, in a sample code fragment it says the following: [^ \t\n]+ printf("saw a word\n"); I do not understand what that code means, and how it corresponds ...
1
vote
0answers
110 views

Converting ambiguous to unambigous grammar for arithmetic expressions

I'm attempting to come up with a non-ambiguous grammar for arithmetic expressions to make an Earley parser faster but I seem to be having trouble. This is the given ambiguous grammar S -> E | ...
1
vote
1answer
138 views

Java Regex to match “string”

I am creating a lexical from scratch and I am getting into the part of matching (")[\\w]+("). I have this regular expression ^(\")[\\w]+(\")$, but it won't catch the string. SSCCE: Map<String, ...
0
votes
1answer
41 views

Token category of the ellipsis

Which is the token category of the ellipsis (...) in the C++ programming language after tokenization? I can't seem to find anything specifying whether it is a delimiter, and operator, etc...
-1
votes
1answer
71 views

How is source code parsed? [closed]

What's the standard method for parsing source code? I'm not particularly concerned about compiling the code into another language, just how the code itself is transformed from a text file into an ...
-1
votes
1answer
220 views

C++ scanner and parser ( lexical ) [closed]

I am writing a token processor which will parse tokens and display it's value and whether it is a integer,float or a literal token . I have 3 functions called GetNextToken() and NumToken() and ...
1
vote
1answer
27 views

Use different stemmers in the same index

I'm building a dictionary and want to use elasticsearch as the search engine. It should support multiple languages, so my database looks similar to this: | left_lang | right_lang | left_word | ...
5
votes
1answer
137 views

Are there any off-the-shelf solutions for lexical analysis in Haskell that allow for a run-time dynamic lexicon?

I'm working on a small Haskell project that needs to be able to lex a very small subset of strictly formed English in to tokens for semantic parsing. It's a very naïve natural language interface to a ...
0
votes
1answer
117 views

Flex(lexical analyzer) not recognizing or operator

Hi i have a problem with flex.It doesn't recognize the or operator in this rule: [0-9A-Za-z]+{CORRECT} | {CORRECT}[0-9A-Za-z]+ [0-9A-Za-z]+{CORRECT}[0-9A-Za-z]+ {...} If i split it in 3 rules then ...
2
votes
2answers
253 views

How to start writing lexical analyzer from scratch? [closed]

I want to write a lexical analyzer for python from scratch. But I do not know where and how to begin. For starters I want to assume that we will have a python program as a set of strings passed to the ...
8
votes
1answer
169 views

DFAs vs Regexes when implementing a lexical analyzer?

(I'm just learning how to write a compiler, so please correct me if I make any incorrect claims) Why would anyone still implement DFAs in code (goto statements, table-driven implementations) when ...
0
votes
1answer
79 views

Operators in Lexical Analysis

I am revising some things on the compiler for an uni exam, and I wondered what ID an operator token had? For example... float position, initial, rate; position = initial += rate * 60 Token, Type; ...
2
votes
2answers
59 views

How to make the letter “A” an exception in Lucene's StandardAnalyzer?

I've created a medical dictionary in Android using Lucene. The words and definitions are Danish, and I'm using StandardAnalyzer to index and search for the entries. The idea is that when I click on an ...
0
votes
2answers
136 views

bison parser error

I get the following errors in my lex file file I don't know why that is happening each error is about each token returned to the parser lexical.l: In function âyylexâ: lexical.l:29: error: ...
0
votes
1answer
164 views

Drawing Finite State Machine (FSM) for finding tokens using given Microsyntax

I'm trying to draw a FSM for finding tokens using given Microsyntax microsyntax // Uses .Net regular expression syntax. Identifier <|[a-zA-Z][\w_.]* IntegerValue <|\d+ // real values must ...
2
votes
4answers
109 views

How can I use text analysis in order to investigate a questionary?

I'm the "programmer" of a team of pupils that aims to investigate satisfaction and general problems in my grammar school. We have a questionary that is built upon a scale from 1-6 and we interpret ...
10
votes
2answers
142 views

Must &= always be interpreted as an operator?

I was coding and accidentally left out a space between a constant reference and its default value. I was surprised to see that it came up as an error in Intellisense, so I compiled it, and sure ...
2
votes
1answer
250 views

Lexical analyser with c, new line token

I have 4 rules rule1: match variable rule2: match Float rule3: match Integer rule4: [ \t] ; //skipping space, tabs rule5: \n ; now I want to have a rule for matching error, anything else that ...
1
vote
3answers
117 views

How to convert string with escape sequence to one char in C

just to give you background. We have a school project where we need to write our own compiler in C. My task is to write a lexical analysis. So far so good but I am having some difficulties with escape ...
2
votes
0answers
388 views

Lexical analyzer (java) for HTML Markdown source code

I do not even know where to begin writing the character-by-character lexical analyzer. I wrote BNF grammar rules for a Markdown language (specifically, HTML) based on rules and specifics I was given, ...
0
votes
3answers
179 views

How to create makefile for lexical analyzer?

I want to make a make file for my lexical analyzer using flex ,I have tried to many templates of make files but it did not work so please help me build one here is the lines to compile the code: lex ...
0
votes
1answer
39 views

creating simple rule in flex

I need to make a rule in my lex file that will identify the start of a newline and a sequence of spaces I did this ^( )* but the compiler says it is wrong what is the wright way to define it?

1 2 3 4 5