The lexical-scanner tag has no wiki summary.
11
votes
10answers
959 views
Have you ever effectively used lexer/parser in real world application?
Recently, I am started learning Antlr. And knew that lexer/parser together could be used in construction of programming languages.
Other than DSL & programming languages, Have you ever directly ...
4
votes
2answers
1k views
How do I implement a two-pass scanner using GNU Flex?
As a pet-project, I'd like to attempt to implement a basic language of my own design that can be used as a web-scripting language. It's trivial to run a C++ program as an Apache CGI, so the real work ...
3
votes
2answers
831 views
scanUpToCharactersFromSet stops after one loop
I'm trying to get the contents of a CSV file into an array. When I've done this before I had one record per line, and used the newline character with scanUpToCharactersFromSet:intoString:, passing ...
3
votes
1answer
1k views
DFA based regular expression matching - how to get all matches!
I have a given DFA that represent a regular expression.
I want to match the DFA against an input stream and get all possible matches back, not only the lestmost-longest match.
For example:
regex: ...
2
votes
1answer
40 views
Is it acceptable to store the previous state as a global variable?
One of the biggest problems with designing a lexical analyzer/parser combination is overzealousness in designing the analyzer. (f)lex isn't designed to have parser logic, which can sometimes interfere ...
2
votes
1answer
88 views
Order of precedence for token matching in Flex
My apologies if the title of this thread is a little confusing. What I'm asking about is how does Flex (the lexical analyzer) handle issues of precedence?
For example, let's say I have two tokens ...
2
votes
1answer
315 views
Parsing structured text in Ruby
There are several questions on SO about parsing structured text in Ruby, but none of them apply to my case.
I'm the author of the Ruby Whois library. The library includes several parsers to parse a ...
2
votes
3answers
179 views
Simple C Program
This program is based on the program in K&R in the input/output section
#include <stdio.h>
main(){
double sum, v;
sum = 0;
while (scanf("%1f",&v)==1)
...
2
votes
5answers
1k views
How parse a string in c++
I want to parse the strings, so that to check whether they have specified syntax or not.
Ex:
Str = Z344-R565l t
Here my requirement is after z there should be a number and after that a "-" and after ...
1
vote
1answer
124 views
What is Object Oriented Scanner (Lexical Analysis)?
Recently I came across the concept of Lexical Analysis called "Object Oriented Scanner", but I wasn't able to distinguish it from the normal scanning technique. What can be the extra things in object ...
1
vote
1answer
110 views
Java tool for matching multiple regular expressions with priorities to multiple strings
I have an unlimited sequence of strings and numerous regular expressions ordered by priorities. For each string in a sequence I have to to find the first matching regular expression and the matched ...
1
vote
2answers
117 views
Flex C++ VTable Error
I am using GNU Flex and Bison to create a compiler. As I am trying to create an AST (Abstract Syntax Tree) for my program, I need to port it to C++. So far I have been successful, until a ...
1
vote
3answers
102 views
Learning about lexical scanning and parsing from the ground up
I was wondering if somebody could suggest projects that implement simple lexers and parsers (without the help of tools like lex and yacc) for me to look at the source. I'm interested in the subject, ...
1
vote
0answers
216 views
Table-driven lexical analyzer/scanner implementation
Actually I have two questions. If I start writing my own lexical analyzer, parser what architecture it will be? What principles should I consider (i.e. Open-Close, loose coupling)?
Next question is ...
1
vote
1answer
306 views
How to properly scan for identifiers using Ragel
I'm trying to write a scanner for my C/C++/C#/Java/D-like programming language that I'm designing for personal reasons. For this task I'm using Ragel to generate my scanner. I'm having trouble ...
1
vote
3answers
158 views
How can I have a function that returns different types in F#?
Basically, I've made a scanner in F#. Currently it returns a list of bunch of tuples with type (Token, string).
Ideally I'd like to return a list of tuples that might contain different types. For ...
1
vote
2answers
749 views
Writing re-entrant lexer with Flex
I'm newbie to flex. I'm trying to write a simple re-entrant lexer/scanner with flex. The lexer definition goes below. I get stuck with compilation errors as shown below (yyg issue):
reentrant.l:
/* ...
1
vote
2answers
846 views
What's the difference between a parser and a scanner?
I already made a scanner, now I'm supposed to make a parser. What's the difference?
1
vote
5answers
321 views
How can I tokenize this with a regex?
Suppose I have strings like the following :
OneTwo
ThreeFour
AnotherString
DVDPlayer
CDPlayer
I know how to tokenize the camel-case ones, except the "DVDPlayer" and "CDPlayer". I know I could ...
1
vote
2answers
800 views
Bison does not appear to recognize C string literals appropriately
My problem is that I am trying to run a problem that I coded using a flex-bison scanner-parser. What my program is supposed to do is take user input (in my case, queries for a database system I'm ...
0
votes
2answers
35 views
Lexical analyser and parser communication
Most of the resources on lexical analyzers and parsers illustrate use of streams to communicate between them (or so I understand).
It is explained that the parser asks for the next token, say by ...
0
votes
1answer
38 views
Writing a lexer for chunked data
I have an embedded application which communicates with a RESTful server over HTTP. Some services involve sending some data to the client which is interpreted using a very simple lexer I wrote using ...
0
votes
2answers
113 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
1answer
135 views
How to write simple parser for if and while statements? [closed]
I need to write a simple parser that will convert the tokens to parser tree.
I've already wrote LexicalAnalyzer that returns the tokens. Now, I want
to write rules for "if and while" statements(for ...
0
votes
0answers
87 views
re2c - FILL'ing
My re2c-generated scanner always tries to fill (YYFILL) the maximum length of a token+1 (as the documentation says, yes). However reading beyond the allocated buffer (the raw source) may happen if the ...
0
votes
2answers
237 views
Javascript string scanner?
I'm wondering, is there any way to scan a string in javascript.
e.g, I've got a string abcdefdfdfssdfdssdffdq="HELLO"fdndkjdsnkjdnlkdfns I'd like to scan that string and delete the characters between ...
0
votes
3answers
192 views
How to tokenize the sample string using Regular Expression in Python?
I am new to regular expression. On top of finding out the pattern to match the following string, please also point out references and/or samples web sites.
The data string
1. First1 Last1 - 20 ...
0
votes
1answer
101 views
Does this program grammar only recognize variables with the name 'ID'?
I need to make a scanner in lex/flex to find tokens and a parser in yacc/bison to process those tokens based on the following grammar. When I was in the middle of making the scanner, it appeared to ...
0
votes
1answer
3k views
How to parse a tab-separated line of text in Ruby?
I find Ruby's each function a bit confusing. If I have a line of text, an each loop will give me every space-delimited word rather than each individual character.
So what's the best way of retrieving ...
0
votes
3answers
2k views
How to turn a token stream into a parse tree
I have a lexer built that streams out tokens from in input but I'm not sure how to build the next step in the process - the parse tree. Does anybody have any good resources or examples on how to ...
0
votes
2answers
1k views
flex (lexical analyzer) regular expressions - Reusing definitions
I have this working definition:
IDENTIFIER [a-zA-Z][a-zA-Z0-9]*
I don't want to keep repeating the [a-zA-Z] and [0-9], so I made two new definitions
DIGIT [0-9]
VALID [a-zA-Z]
How can I ...
-1
votes
2answers
416 views
lex/yacc and parser/scanner
lex and yacc are supposed to be used together.
Which ones is the scanner and which one is the parser?
Which one creates a scanner and which one creates a parser?