public function getOffset(string $string) : int|false { $position = strpos($this->source, $string, $this->position); return false === $position ? false : $position - $this->position; }