This page is no longer maintained — Please continue to the home page at www.scala-lang.org

A question about string matching

2 replies
Xiaobo Yang
Joined: 2010-01-28,
User offline. Last seen 42 years 45 weeks ago.

Hi all,

Is there an easier way to check the string as below?

Many thanks,
X. YANG

def checkString(s: String): String = {
require((s != null) && (s startsWith "hello:"))

if (s startsWith "hello:tom") return "Hello Tom"
else if (s startsWith "hello:jerry") return "Hello Jerry"

"Who are you?"
}

Kevin Wright
Joined: 2009-06-09,
User offline. Last seen 49 weeks 3 days ago.
Re: A question about string matching
Extractors are your friend here, then you can use pattern matching:
object HelloStr { def unapply(s : String): Option[String] = if (s startsWith "hello:") Some(s substring 6) else None}
def checkString(s: String) : String = s match {
case HelloStr(s) if s startsWith "tom" => "Hello Tom" case HelloStr(s) if s startsWith "jerry" => "Hello Jerry" case HelloStr(_) => "Who are you?" case _ => error("String doesn't start with hello:") }



This would also be a good one to ask on stack Overflow

On 26 February 2010 10:55, Xiaobo Yang <xiaobo.yang@gmail.com> wrote:
Hi all,

Is there an easier way to check the string as below?

Many thanks,
X. YANG

       def checkString(s: String): String = {
               require((s != null) && (s startsWith "hello:"))

               if (s startsWith "hello:tom") return "Hello Tom"
               else if (s startsWith "hello:jerry") return "Hello Jerry"

               "Who are you?"
       }



--
Kevin Wright

mail/google talk: kev.lee.wright@googlemail.com
wave: kev.lee.wright@googlewave.com
skype: kev.lee.wright
twitter: @thecoda

ichoran
Joined: 2009-08-14,
User offline. Last seen 2 years 3 weeks ago.
Re: A question about string matching
def checkString(s: String) = "^hello:(.*)".r.unapplySeq(s) match {
  case Some(List(name)) => name match {
    case "tom" => "Hello Tom"
    case "jerry" => "Hello Jerry"
    case _ => "Who are you?"
  }
  case _ => throw new IllegalArgumentException("String did not start with hello:")
}

The regex "^hello:(.*)".r matches a string starting with hello: and captures the following text.  We then match on it, but if successful it returns a List(Some(the_matched_string)), which is a bit awkward to keep writing down, so we match on the contents which is just the name (if any).

If you really have to catch the null string, then you should put that require first.

  --Rex

On Fri, Feb 26, 2010 at 5:55 AM, Xiaobo Yang <xiaobo.yang@gmail.com> wrote:
Hi all,

Is there an easier way to check the string as below?

Many thanks,
X. YANG

       def checkString(s: String): String = {
               require((s != null) && (s startsWith "hello:"))

               if (s startsWith "hello:tom") return "Hello Tom"
               else if (s startsWith "hello:jerry") return "Hello Jerry"

               "Who are you?"
       }

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland