nrinaudo on master
Update sbt to 1.6.2 Merge pull request #138 from nr… (compare)
nrinaudo on update-sbt-1.6.2
Update sbt to 1.6.2 (compare)
nrinaudo on update-kantan.sbt-2.8.2
nrinaudo on master
Update to kantan.sbt 2.8.2 Merge pull request #137 from nr… (compare)
nrinaudo on update-kantan.sbt-2.8.2
Update to kantan.sbt 2.8.2 (compare)
instantDecoder
, localDateTimeDecoder
, .... which all take a DateFormat
as a parameter
regex1
and regex2
are the two regular expressions you with to compose and str
the string you wish to apply them to
something=false&list=1,2,3¬hing=
. so depending on the key, i need to interpret the rhs differently.
(\w+)(:\d+)*
. and then compiled a Regex[(String,String)]
or Regex[(String,Seq[String])]
, I always got an error about an "empty group". I then went for (\w+)(:\d+)*?
and used Regex[(String, Option[String])]
. what can i do about this?
&
and =
. so a dedicated uri parsing library would not really fit.
:
, which I'm assuming is desirable but I might be wrong):
means in your regex?