The NthAdapter transforms the input value from a nth representation into it's numeric value.
Ex. The string "1st"
will be transformed into 1
.
<?php
use Presta\BehatEvaluator\Adapter\NthAdapter;
$evaluate = new NthAdapter();
$value = $evaluate('10th');
// $value is equal to 10