You are here

protected property XPathQueryParser::$wordBoundaries in Feeds XPath Parser 8

Characters that represent word boundaries.

Type: array

File

lib/Drupal/feeds_xpathparser/XPathQueryParser.php, line 33
Contains \Drupal\feeds_xpathparser\XPathQueryParser.

Class

XPathQueryParser
Pseudo-parser of XPath queries.

Namespace

Drupal\feeds_xpathparser

Code

protected $wordBoundaries = array(
  '[',
  ']',
  '=',
  '(',
  ')',
  '.',
  '<',
  '>',
  '*',
  '!',
  '|',
  '/',
  ',',
  ' ',
  ':',
);