regex - What is the meaning of the following expression in scala? -


I am trying to understand a source code .. (originally a regedx parser) .. but I can not understand I am the following expression:

  DRF quotes = a "???" Line ~ & Gt; "[^ '] +". R & lt; ~ "'"   

So I think [^'] means that everything except a single quote is found? right?? But what are the double quotes next to it .. And what are the double-quotes squawwed arrows inside the double quotes?

"'" ~ & gt; "[^ '] +". R & lt; ~ "'" matches a single bid block:

Single quote ( "'" ") + Multiple non-single-quote characters ( "[^ '] +". R ) ends with a single quote ( "'" ). P>

Comments

Popular posts from this blog

asp.net - Procedure or function "Procedure name" expects a parameter "Param name" which was not supplied occurs rarely -

jsp - No mapping found for HTTP request with URI with annotation config Spring MVC and Jetty -

sql server ce - Is there some way to make sqlce3.5 and 4.0 co-exist in the C# project -