python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
PEG Grammar Parsing, error when expression starts with negative number
I have the following PEG grammar defined:
Program = _{ SOI ~ Expr ~ EOF }
Expr = { UnaryExpr | BinaryExpr }
Term = _{Int | "(" ~ Expr ~ ")" }
UnaryExpr = { Operator ~ Term }
Bi...
Apollo
Votes: 0
Answers: 1
Want to copy S.No (A1,A2,A3,A4.......) one by one from sheet "filter_data" to sheet "cheque print" , into Cell (Y22) using VBA
I have two Excel sheets with the name Filter data and Cheque Print on the same workbook, In the Filter Data, I have Cheque Serial Number in Column A2, A3, A4, A5...... and in the Cheque Print, Cheque...
zahid wazir
Votes: 0
Answers: 1
PEG rules fails to EOI
I am trying to use PEG expression to take parse the file.
My PEG expression is:
WHITESPACE = _{" "}
level = {ASCII_DIGIT*}
verb = {ASCII_ALPHA{,4}}
value = {ASCII_ALPHANUMERIC*}
structure = ...
Maria
Votes: 0
Answers: 3
Pest errors in random tests, what to do?
I have about 90 tests written with Pest for my Laravel application. Most of the time all the tests pass but sometimes even if I don't make any change to the codebase i get an error.
The error is the s...
Cata
Votes: 0
Answers: 1