Q:

How to determine if a string contains a regular expression in Scala?

belongs to collection: Scala String Programs

0

In Scala, data validation and adding constraints to its usage is important for data processing. And checking if a regular expression is present in a string.

To check whether the strings contain a regular expression or regex we will use the findFirstIn() method.

Syntax:

    regex.findfirstIn(string)

The method accepts the string in which regex is searched and returns an Option[String] value.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program to check if a string contains a regular expression

object myObject {
    
    def main(args: Array[String]) {
        val bike = "harley davidson Iron 883"    
        val numRegex = "[0-9]+".r

        println("String: "+bike)

        val matchPattern = numRegex.findFirstIn(bike)

        print("Pattern found "+matchPattern)
    }
}

Output

String: harley davidson Iron 883
Pattern found Some(883)

Explanation:

In this program, we have a string with is to be checked for regular expression which is created using the .r method. The method findFirstIn() is used to check for the presence of the pattern in the string which returns a none if no match is found and the matched string if a match is found.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Scala String Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Scala program to split string... >>