XPATH mulai dengan

$x('//span[@class="text" and starts-with(.,"A")]/text()')
#Delivers texts of certain html element(span here) which start with "A"
$x('//span[@class="text" and ends-with(.,"A")]/text()')
#Delivers texts of certain html element(span here) which ends with "A" ;)
Armandres