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)
Antlr lexer rule to tokenize float/double
I am trying to use this regex to tokenize a double in Antlr but apparently this regex is not getting understood by Antlr.
Number: (-?)(0|([1-9][0-9]*))(\\.[0-9]+)?;
Error:
syntax error: '-' came as a...
Node.JS
Votes: 0
Answers: 1
How to specify input locations parameter in dataflow pipeline?
I have a Dataflow template, that I originally created via Dataprep. Now I want to move away from Dataprep and use just Dataflow and schedule jobs using Cloud Scheduler. In GC console in Dataflow ->...
DarkLeafyGreen
Votes: 0
Answers: 0
Improving the performance of an PCRE Regex Pattern
I have the below regex here which is written to support the PRCE/PRCE2 format. However, this throws the following error “Evaluation takes too long. Please check your regular expression.” Is there any ...
Kamesh
Votes: 0
Answers: 2
Created a regex to capture the email address out of each line of text in the txt file. What would be a more universal way of writing this?
I am trying to capture the email addresses out of each line of text out of a txt file on regex101.com.
Capturing everything after the "@" symbol was easy enough, but I ran into trouble becau...
JSG
Votes: 0
Answers: 2