You are here

function XBBCodeTagMatch::advance in Extensible BBCode 8.2

Same name and namespace in other branches
  1. 8 lib/Drupal/xbbcode/XBBCodeTagMatch.php \Drupal\xbbcode\XBBCodeTagMatch::advance()

File

src/XBBCodeTagMatch.php, line 37

Class

XBBCodeTagMatch

Namespace

Drupal\xbbcode

Code

function advance($text, $offset) {
  $this->content[] = substr($text, $this->offset, $offset - $this->offset);
  $this->offset = $offset;
}