You are here

public function Scanner::getAsciiAlpha in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/masterminds/html5/src/HTML5/Parser/Scanner.php \Masterminds\HTML5\Parser\Scanner::getAsciiAlpha()

Get the next group of characters that are ASCII Alpha characters.

Note, along with getting the characters the pointer in the data will be moved as well.

Return value

string The next group of ASCII alpha characters.

File

vendor/masterminds/html5/src/HTML5/Parser/Scanner.php, line 132

Class

Scanner
The scanner.

Namespace

Masterminds\HTML5\Parser

Code

public function getAsciiAlpha() {
  return $this->is
    ->charsWhile(static::CHARS_ALPHA);
}