Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (2)

13
votes
7answers
3k views

Algorithms or libraries for textual analysis, specifically: dominant words, phrases across text, and collection of text

I'm working on a project where I need to analyze a page of text and collections of pages of text to determine dominant words. I'd like to know if there is a library (prefer c# or java) that will ...
12
votes
9answers
322 views

Does an algorithm exist to help detect the “primary topic” of an English sentence?

I'm trying to find out if there is a known algorithm that can detect the "key concept" of a sentence. The use case is as follows: User enters a sentence as a query (Does chicken taste like turkey?) ...
10
votes
16answers
2k views

is there a simple compiler for a small language

I am looking for a simple compiler that compiles a simple language, I need it to write a paper about it and to learn how compilers work, I am not looking for a sophisticated thing just a simple ...
10
votes
2answers
2k views

Profiler/Analyzer for Erlang?

Are there any good code profilers/analyzers for Erlang? I need something that can build a Call graph for my code.
9
votes
4answers
475 views

What Javascript constructs does JsLex incorrectly lex?

JsLex is a Javascript lexer I've written in Python. It does a good job for a day's work (or so), but I'm sure there are cases it gets wrong. In particular, it doesn't understand anything about ...
6
votes
6answers
545 views

What can create a lexical error in C?

Besides not closing a comment /*..., what constitutes a lexical error in C?
6
votes
5answers
2k views

Python - lexical analysis and tokenization

I'm looking to speed along my discovery process here quite a bit, as this is my first venture into the world of lexical analysis. Maybe this is even the wrong path. First, I'll describe my problem: ...
6
votes
3answers
330 views

How to recognize words in text with non-word tokens?

I am currently parsing a bunch of mails and want to get words and other interesting tokens out of mails (even with spelling errors or combination of characters and letters, like "zebra21" or ...
6
votes
2answers
4k views

Python regular expressions - how to capture multiple groups from a wildcard expression?

I have a Python regular expression that contains a group which can occur zero or many times - but when I retrieve the list of groups afterwards, only the last one is present. Example: ...
6
votes
4answers
3k views

C#/.NET Lexer Generators

I'm looking for a decent lexical scanner generator for C#/.NET -- something that supports Unicode character categories, and generates somewhat readable & efficient code. Anyone know of one? ...
4
votes
3answers
158 views

SELECT* vs SELECT *

Yesterday a colleague showed me the following postgres query. We were both surprised that it worked: SELECT* FROM mytable; Since I recently coded a parser for another language, I am trying to ...
4
votes
3answers
97 views

how to recognize a set of key words in a text

I have a huge set of key words. Given a text , I want to be able to recognize only those words that occur in the key list of words and ignore all the other words. What is the best way to approach ...
4
votes
1answer
459 views

How to implement Lexical Analysis in Javascript

Hey folks, thanks for reading I am currently attempting to do a Google-style calculator. You input a string, it determines if it can be calculated and returns the result. I began slowly with the ...
4
votes
3answers
804 views

C/C++/C#/VB based Lexical Analyzers

During the Compiler Design Lab hours, I'm using JLex as the Lexical Analyzer Generator, which produces a Java program from a lexical specification. I'd like to know if there are other tools which can ...
4
votes
3answers
326 views

Regular expressions versus lexical analyzers in Haskell

I'm getting started with Haskell and I'm trying to use the Alex tool to create regular expressions and I'm a little bit lost; my first inconvenience was the compile part. How I have to do to compile a ...
4
votes
4answers
597 views

How do you implement syntax highlighting?

I am embarking on some learning and I want to write my own syntax highlighting for files in C++. Can anyone give me ideas on how to go about doing this? To me it seems that when a file is opened: ...
4
votes
3answers
1k views

How would you go about implementing off-side rule?

I've already written a generator that does the trick, but I'd like to know the best possible way to implement the off-side rule. Shortly: Off-side rule means in this context that indentation is ...
4
votes
6answers
2k views

Simple regex-based lexer in Python

Lexical analyzers are quite easy to write when you have regexes. Today I wanted to write a simple general analyzer in Python, and came up with: import re import sys class Token(object): """ A ...
3
votes
3answers
135 views

Using lex generated source code in another file

i would like to use the code generated by lex in another code that i have , but all the examples that i have seen is embedding the main function inside the lex file not the opposite. is it possible ...
3
votes
2answers
47 views

Does the recognition of numbers belong in the scanner or in the parser?

When you look at the EBNF description of a language, you often see a definition for integers and real numbers: integer ::= digit digit* // Accepts numbers with a 0 prefix real ::= integer "." ...
3
votes
2answers
133 views

Search Query Tokenizer

We're trying to add a simple search functionality to our website that lists restaurants. We try to detect the place name, location, and place features from the search string, something like "cheap ...
3
votes
6answers
302 views

How do I write a parser in C or Objective-C from without a parser generators?

I am trying to make a calculator in C or Objective-C that accepts a string along the lines of 8/2+4(3*9)^2 and returns the answer 2920. I would prefer not to use a generator like Lex or Yacc, so I ...
3
votes
1answer
183 views

Tools/libraries that provide APIs to determine if an English sentence is grammatically correct or not?

I know there are many natural language parsers that can be used to produce parse trees for English sentences. But, I don't know of any that also check for grammatical correctness. Does anyone know ...
3
votes
4answers
246 views

How can I find only 'interesting' words from a corpus?

I am parsing sentences. I want to know the relevant content of each sentence, defined loosely as "semi-unique words" in relation to the rest of the corpus. Something similar to Amazon's "statistically ...
3
votes
2answers
429 views

Are you aware of any lexical analyzer or lexer in Qt?

Are you aware of any lexical analyzer or lexer in Qt? I need it for parsing text files.
3
votes
2answers
295 views

Is it possible to call C# lexical/syntactic analyzers without compilation?

Considering this question of SO, where whole C# in-memory compiler is being called. When only lexical and syntactic analyzing is required: parse text as a stream of lexemes, check them and exit. Is ...
3
votes
1answer
155 views

Possible typos in ECMAScript 5 specification?

Does anybody know why, at the end of section 7.6 of the ECMA-262, 5th Edition specification, the nonterminals UnicodeLetter, UnicodeCombiningMark, UnicodeDigit, UnicodeconnectorPunctuation, and ...
3
votes
3answers
665 views

Lexical Analysis of Python Programming Language

Does anyone know where a FLEX or LEX specification file for Python exists? For example, this is a lex specification for the ANSI C programming language: ...
3
votes
1answer
472 views

Elimination left recursion for E := EE+|EE-|id

How to eliminate left recursion for the following grammar? E := EE+|EE-|id Using the common procedure: A := Aa|b translates to: A := b|A' A' := ϵ| Aa Applying this to the original grammar we ...
3
votes
6answers
809 views

Parsing Meaning from Text

I realize this is a broad topic, but I'm looking for a good primer on parsing meaning from text, ideally in Python. As an example of what I'm looking to do, if a user makes a blog post like: "Manny ...
3
votes
2answers
321 views

FLEX: Is there a way to return mutiple tokens at once

In flex, I want to return multiple tokens for one match of a regular expression. Is there a way to do this?
3
votes
3answers
2k views

Recommendations for a good C#/ .NET based lexical analyser

Can anyone recommend a good .NET based lexical analyser, preferably written in C#?
2
votes
1answer
67 views

Simple lexical analysis java program

My little project is a lexical analysis program in which i have to take every word found in an arbitrary .java file and list every line it appears on in the file. I need to have one look up table ...
2
votes
2answers
60 views

Speed up my lexing algorithm

I'm splitting a potentially large string (let's say 20MB, though this is entirely arbitrary) into tokens defined by a list of regular expressions. My current algorithm takes the following approach: ...
2
votes
1answer
109 views

BNF to Lex to Parser in C [closed]

I am trying to learn the concepts and how to create a lexical analyser and parser in C from BNF notation, not EBNF. I would like to learn it in the language of C. Can anyone explain to me the parts ...
2
votes
1answer
73 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
93 views

Having trouble grokking CSS 2.1 grammar

I am writing a hand-coded CSS 2.1 parsing engine (in C#), and I'm working directly off the W3C CSS 2.1 grammar (http://www.w3.org/TR/CSS21/grammar.html). However, there's a token that I just don't ...
2
votes
1answer
157 views

How do you parse context-sensitive C-code?

One issue I ran into was that C must be context-sensitive and cannot be parsed with one token of lookahead. For example int main1; int main() {} That's the simplest example I can think of in which ...
2
votes
2answers
318 views

Installing flex (lexical analyzer) on Mac

Can someone tell me how I can install flex (lexical analyzer) on my Mac? I searched everywhere on google and I can't find it. I have the universal binary and i extracted it to my desktop but I have no ...
2
votes
1answer
169 views

Regex to catch that there's no white space at the start of a line (flex)

I'm working on a lexer for the Python grammar (written in Flex) for a compiler construction class and I'm having trouble getting a properly working regular expression to catch when there is no white ...
2
votes
2answers
671 views

What is a regular expression for control characters?

I'm trying to match a control character in the form \^c where c is any valid character for control characters. I have this regular expression, but it's not currently working: \\[^][@-z] I think the ...
2
votes
2answers
625 views

Ruby/Python - generating and parsing C/C++ code

I need to generate C structs and arrays from data stored in a db table, and alternately parse similar info. I use both ruby and python for this task, and was wondering if anyone heard of a module/lib ...
2
votes
4answers
434 views

Question on lexical analysis

I am reading the dragon book. Quoting the text from the book (3.1.4 Lexical errors, Pno 114) It is hard for a lexical analyzer to tell, without the aid of other components, that there is a ...
2
votes
1answer
166 views

Bison input analyzer - basic question on optional grammer and input interpretation

I am very new to Flex/Bison, So it is very navie question. Pardon me if so. May look like homework question - but I need to implement project based on below concept. My question is related to two ...
2
votes
2answers
214 views

How do I lex this input?

I currently have a working, simple language implemented in Java using ANTLR. What I want to do is embed it in plain text, in a similar fashion to PHP. For example: Lorem ipsum dolor sit amet <% ...
2
votes
1answer
548 views

Error compiling flex (the lexical analyzer)

I'm trying to install flex (the lexical analyzer, not the Adobe program) on my Windows computer. I have MSYS installed. I untar flex, ./configure it, but when I try to make it, I get this error: In ...
2
votes
0answers
411 views

categorize websites - open source LSI?

Im looking to categorize lots of websites (millions). I can use Nutch to crawl them and get the content of the sites, but I am looking for the best (and cheapest or free) tool to categorize them. One ...
2
votes
3answers
202 views

Matching multiple regex groups and removing them

I have been given a file that I would like to extract the useful data from. The format of the file goes something like this: LINE: 1 TOKENKIND: somedata TOKENKIND: somedata LINE: 2 TOKENKIND: ...
2
votes
3answers
926 views

Writing an z80 assembler - Lexing ASM and building a parse tree using composition?

I'm very new to the concept of writing an assembler and even after reading a great deal of material, I'm still having difficulties wrapping my head around a couple of concepts. 1) What is the process ...
1
vote
0answers
28 views

Lex's incorrect algorithm for lookahead operators

In "modern compiler implementation in Java" by Andrew Appel he claims in an exercise that: Lex has a lookahead operator / so that the regular expression abc/def matches abc only when followed by def ...

1 2 3