DelimitedStepParser

abstract class DelimitedStepParser[T](regex: Regex) extends StepParser[T]

A Delimited step parser uses a delimiter ({} by default) to know which string to extract from the text

trait StepParser[T]
class Object
trait Matchable
class Any

Value members

Abstract methods

protected def parse1(text: String): T
def withRegex(r: Regex): DelimitedStepParser[T]

use another regex with this parser

use another regex with this parser

Concrete methods

def parse(text: String): Either[Throwable, (String, T)]
def run(text: String): Either[Throwable, T]
def strip(text: String): String

Inherited methods

def map[S](f: T => S): StepParser[S]
Inherited from
StepParser