- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
REPL hates "."s
Tue, 2012-01-03, 08:35
Dear Scalarazzi,
Welcome to Scala version 2.9.0.1 (Java HotSpot(TM) 64-Bit Server VM, Java 1.6.0_29).Type in expressions to have them evaluated. Type :help for more information.
scala> val s1 = "my.string.has.dots.in.it" val s1 = "my.string.has.dots.in.it"s1: java.lang.String = my.string.has.dots.in.it
scala> s1.split( "." )s1.split( "." ) res0: Array[java.lang.String] = Array()
scala> val s2 = "my-string-has-dashes-in-it" val s2 = "my-string-has-dashes-in-it"s2: java.lang.String = my-string-has-dashes-in-it
scala> s2.split( "-" )s2.split( "-" ) res1: Array[java.lang.String] = Array(my, string, has, dashes, in, it)
scala>
Best wishes,
--greg
--
L.G. Meredith
Managing Partner
Biosimilarity LLC
7329 39th Ave SWSeattle, WA 98136
+1 206.650.3740
http://biosimilarity.blogspot.com
Welcome to Scala version 2.9.0.1 (Java HotSpot(TM) 64-Bit Server VM, Java 1.6.0_29).Type in expressions to have them evaluated. Type :help for more information.
scala> val s1 = "my.string.has.dots.in.it" val s1 = "my.string.has.dots.in.it"s1: java.lang.String = my.string.has.dots.in.it
scala> s1.split( "." )s1.split( "." ) res0: Array[java.lang.String] = Array()
scala> val s2 = "my-string-has-dashes-in-it" val s2 = "my-string-has-dashes-in-it"s2: java.lang.String = my-string-has-dashes-in-it
scala> s2.split( "-" )s2.split( "-" ) res1: Array[java.lang.String] = Array(my, string, has, dashes, in, it)
scala>
Best wishes,
--greg
--
L.G. Meredith
Managing Partner
Biosimilarity LLC
7329 39th Ave SWSeattle, WA 98136
+1 206.650.3740
http://biosimilarity.blogspot.com
Wed, 2012-01-04, 06:51
#2
Re: Re: REPL hates "."s
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Am 03.01.2012 08:37, schrieb Meredith Gregory:
> P.S. Apologies -- i see that split is internally using regex and "." is
> interpreted as a meta-character. Escaping does the trick.
Or using a char as delimiter:
scala> val s1 = "my.string.has.dots.in.it".split ('.')
s1: Array[String] = Array(my, string, has, dots, in, it)
On Mon, Jan 2, 2012 at 11:35 PM, Meredith Gregory <lgreg.meredith@gmail.com> wrote:
--
L.G. Meredith
Managing Partner
Biosimilarity LLC
7329 39th Ave SWSeattle, WA 98136
+1 206.650.3740
http://biosimilarity.blogspot.com