Skip to content

pathikrit/ScalaVerbalExpressions

This branch is 6 commits ahead of, 7 commits behind VerbalExpressions/ScalaVerbalExpressions:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1b179c3 · Apr 29, 2015

History

43 Commits
Jun 3, 2014
Apr 29, 2015
Jun 3, 2014
Jun 3, 2014
Apr 29, 2015
Jun 6, 2014

Repository files navigation

Build Status Coverage Status

ScalaVerbalExpressions

import com.github.verbalexpressions.VerbalExpression
import VerbalExpression._

val validUrl = $.startOfLine()
                .andThen("http")
                .maybe("s")
                .andThen("://")
                .maybe("www.")
                .anythingBut(" ")
                .endOfLine()

assert("https://www.google.com" is validUrl)
assert("ftp://home.comcast.net" isNot validUrl)

For more methods, checkout the wiki and the source

The intention of self-documenting code is to replace comments with self-evident code. For example:

BAD (have to mental-parse regex and/or trust the comment):

val numberRegex = """(\Q-\E)?\d+((\Q.\E)\d+)?""" // negative sign followed by digits, followed by optional fraction part

GOOD (code describes what it is and assert in end to make sure no magic was done by the library):

val fraction = $.andThen(".").digits()
val number = $.maybe("-").digits().maybe(fraction)       // verbalexpressions can be composed
assert(number.regexp == numberRegex)

assert(Seq("3", "-4", "-0.458") forall number.check)
assert(Seq("0.", "hello", "4.3.2") forall number.notMatch)

Performance: As fast as vanilla regexes - the library is just a builder around a regex string. You can always access the underlying compiled Pattern:

val money = $.oneOf("$", "", "", "¥").digits()    // works with symbols too
val pattern: java.util.regex.Pattern = money.compile    // the compiled pattern

sbt

Add the following to your build.sbt:

resolvers += "Sonatype releases" at "http://oss.sonatype.org/content/repositories/releases/"

libraryDependencies += "com.github.verbalexpressions" %% "ScalaVerbalExpressions" % "1.0.1"

Releases

No releases published

Packages

No packages published

Languages

  • Scala 100.0%