1
vote
4answers
78 views

Should I tokenize line breaks to separate statements or worry about this on the parser?

I built a basic tokenizer in PHP, right now it parses something similar to javascript albeit semicolons are not needed to separate statements. a = 1 b = a + 1 echo b T_IDENTIFIER a T_EQUAL = ...
1
vote
2answers
100 views

Is it bad idea using regex to tokenize string for lexer?

I'm not sure how am I gonna tokenize source for lexer. For now, I only can think of using regex to parse string into array with given rule (identifier, symbols such as +,-, etc). For instance, begin ...
0
votes
2answers
232 views

Lexing in Java with recursive regex

I'm parsing text using Java. I've defined a grammar below: Start := "(\\<)" Stop := "(\\>)" Var = "(\\w*)"; Cons = "([0-9]*)"; Type1 := Start ((Var | Cons) | TypeParent) (Type1 ((Var | Cons) | ...
1
vote
2answers
205 views

How to rewrite a simple tokenizer to use regular expressions?

This an optimized version of the tokenizer that was first written, and it works fairly well. A secondary tokenizer can parse the output from this function to create classified tokens of greater ...
1
vote
3answers
213 views

Why is this function not breaking up this input string?

I'm trying to break up a string into "symbols" with C++ for further work. I haven't written anything in C++ for a long while, so forgive me if there is something inherently wrong with this code. The ...
2
votes
4answers
371 views

Creating a List Lexer/Parser

I need to create a lexer/parser which deals with input data of variable length and structure. Say I have a list of reserved keywords: keyWordList = ['command1', 'command2', 'command3'] and a user ...
14
votes
3answers
708 views

Is it a Lexer's Job to Parse Numbers and Strings?

Is it a lexer's job to parse numbers and strings? This may or may not sound dumb, given that fact that I'm asking whether a lexer should parse input. However, I'm not sure whether that's in fact the ...
4
votes
3answers
954 views

Recursive Descent Parser for something simple?

I'm writing a parser for a templating language which compiles into JS (if that's relevant). I started out with a few simple regexes, which seemed to work, but regexes are very fragile, so I decided to ...
0
votes
2answers
264 views

Programming a simple compiler - tips

I am trying to program a compiler for a simple language and I am facing some problems. I made a lexer/tokenizer that it takes a file and prints in stdout the tokens. The problem is that I want now ...
2
votes
1answer
825 views

Parser vs. lexer and XML

I'm reading about compilers and parsers architecture now and I wonder about one thing... When you have XML, XHTML, HTML or any SGML-based language, what would be the role of a lexer here and what ...
2
votes
3answers
1k views

Is there a Javascript lexer / tokenizer (in PHP)?

I've seen a couple of Python Javascript tokenizers and a cryptic document on Mozilla.org about a Javascript Lexer but can't find any Javascript tokenizers for PHP specifically. Are there any? Thanks
0
votes
2answers
284 views

Flex, multiline rule

Hi there i have a flex rule inside my lexer definition : operators ...
1
vote
1answer
775 views

ANTLR lexer mismatches tokens

I have a simple ANTLR grammar, which I have stripped down to its bare essentials to demonstrate this problem I'm having. I am using ANTLRworks 1.3.1. grammar sample; assignment : IDENT ':=' NUM ...
0
votes
1answer
159 views

Ruby regex match specific string with special conditions

I'm currently trying to parse a document into tokens with the help of regex. Currently I'm trying to match the keywords in the document. For example I have the following document: Func test() ...
4
votes
4answers
271 views

Lexers/tokenizers and character sets

When constructing a lexer/tokenizer is it a mistake to rely on functions(in C) such as isdigit/isalpha/... ? They are dependent on locale as far as I know. Should I pick a character set and ...
2
votes
2answers
662 views

Is there a simple way I can tokenize a string without a full-blown lexer?

I'm looking to implement the Shunting-yard Algorithm, but I need some help figuring out what the best way to split up a string into its tokens is. If you notice, the first step of the algorithm is ...
12
votes
10answers
2k 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 ...
20
votes
3answers
3k views

Looking for a clear definition of what a “tokenizer”, 'parser“ and ”lexers" are and how they are related to each other and used?

I am looking for a clear definition of what a "tokenizer", "parser" and "lexer" are and how they are related to each other (e.g., does a parser use a tokenizer or vice versa)? I need to create a ...