Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

185
Views
Pegjs Expected [0-9.] or end of input but "a" found

I want to handle string starts with number using pegjs. When I input with 1abcd it throws Expected [0-9.] or end of input but "a" found.. The expected output is { item: '1abcd', case: '=' }. What changes do I need?


var parser = peg.generate(`
  start
    = number:NUMBER  { return { case: "=", item: number } } 
    / string:STRING  { return { case: "=", item: string.join("") } }

    NUMBER
    = number:[0-9\.]+ { return parseFloat(number.join("")); }
    / number:[0-9]+   { return parseInt(number.join(""), 10); }

    STRING = string:[^*]+ { return string; }
`);

console.log(parser.parse("123"))
console.log(parser.parse("123.45"))
console.log(parser.parse("abcd"))
console.log(parser.parse("abcd-efgh"))
console.log(parser.parse("1abcd"))

The output as follows:

{case: "=", item: 123}
{case: "=", item: 123.45}
{case: "=", item: "abcd"}
{case: "=", item: "abcd-efgh"}

Sandbox: https://codesandbox.io/s/javascript-testing-sandbox-forked-5vekz?file=/src/index.js

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Since NUMBER matches the first character, you'll want to use a negative lookahead for STRING before returning a successful match. That way, if a STRING character is encountered, the NUMBER rule will fail and the second alternation of start will be used.

Here's an example, although as @thinkgruen has written, you'll probably want to try to parse floats less loosely as well.

start
    = number:NUMBER  { return { case: "=", item: number } } 
    / string:STRING  { return { case: "=", item: string.join("") } }

NUMBER
    = number:[0-9\.]+ (!STRING) { return parseFloat(number.join("")); }
    / number:[0-9]+   (!STRING) { return parseInt(number.join(""), 10); }

STRING = string:[^*]+ { return string; }
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!