public function Scanner::getAsciiAlphaNum in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/masterminds/html5/src/HTML5/Parser/Scanner.php \Masterminds\HTML5\Parser\Scanner::getAsciiAlphaNum()
Get the next group of characters that are ASCII Alpha characters and numbers.
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 and numbers.
File
- vendor/
masterminds/ html5/ src/ HTML5/ Parser/ Scanner.php, line 145
Class
- Scanner
- The scanner.
Namespace
Masterminds\HTML5\ParserCode
public function getAsciiAlphaNum() {
return $this->is
->charsWhile(static::CHARS_ALNUM);
}