0
votes
4answers
60 views
ByteArray In C# Is Unable To Show All Contents In TextBox
I'm parsing a pdf file...I converted data into byte array but it doesnt show full file..
i dnt want to use any lib or softy..
FileStream fs = new FileStream(fname, FileMod …
1
vote
2answers
64 views
Check a phrase is not in an <a> (or other) element
A friend is writing an advertisement script that puts links around select phrases in HTML code.
Naturally if the phrase is already inside an <a> element (or another element …
1
vote
0answers
18 views
JSF action, value and bindig catalog generator
Hi to all!
I'm am looking for a simple tool that generates a catalog of all used action methods, values and bindigs. I'm working on a big JSF/RichFaces project and I lost the over …
3
votes
3answers
89 views
What’s the most Pythonic XHTML/HTML parser/generator/template module that supports DOM like access?
It should be able to create, modify and read X/HTML in a highly object oriented way that still feels DOM like but is not obese, and is really Pythonic.
Preferably it would deal wit …
2
votes
2answers
31 views
Is there a C header parser tool for wrapper generation like gccxml?
I need to write a few c header wrappers for a new programming language and would like something like gccxml but without the full dependency on gcc and the problems it gives on a wi …
0
votes
3answers
66 views
JavaCC Problem - Generated code doesn’t find all parse errors
Just started with JavaCC. But I have a strange behaviour with it. I want to verify input int the form of tokens (letters and numbers) wich are concatenated with signs (+, -, /) and …
1
vote
3answers
82 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?
0
votes
2answers
24 views
What is the conflict in this yacc parser?
I used the -v option in yacc to produce a y.output file. At the top of the file it says
State 98 conflicts: 1 shift/reduce
Further down in the file is the following:
state 98
…
0
votes
4answers
84 views
Regex to get value within tag
I have a sample set of XML returned back:
<rsp stat="ok">
<site>
<id>1234</id>
<name>testAddress</name>
<hostname>anotherNa …
0
votes
1answer
60 views
Special Ocassion parser in JAVA
Hey guys,
I am working on a date parser in Java. Just wanted some information on if there is any java library which could parse special occasions like for example if I give input …
0
votes
2answers
26 views
How to turn this into a parser
If I just add on to the following yacc file, will it turn into a parser?
/* C-Minus BNF Grammar */
%token ELSE
%token IF
%token INT
%token RETURN
%token VOID
%token WHILE
%token …
0
votes
1answer
21 views
How do you make a parser from a yacc file?
I'v been given the following yacc file. How do I make a parser out of it? Do I have to make a scanner first?
/* C-Minus BNF Grammar */
%token ELSE
%token IF
%token INT
%token R …
2
votes
2answers
59 views
Ruby parser in Java
The project I'm doing is written in Java and parsers source code files. (Java src up to now). Now I'd like to enable parsing Ruby code as well.
Therefore I am looking for a parser …
1
vote
2answers
48 views
I seek parser markdown-file for presentation
hi,
I search web-based markdown-file parser to presentation.
I want to presentation from online markdown-file, realtime parse.
Because I want to manege markdown-files on git repos …
-1
votes
4answers
45 views
regarding xml parser…
what is an xml parser? how many types of parsers are there? which is the best xml parser to parse an xml document? how does an xml parser will work? can any one tell it briefly?
