Here is one you can use. This will output ‘April 2018’
You will need to add this to your wp all import function editor.
function formatDate($str) {
$yr = preg_replace('#\/[^/]*$#', '', $str);
$month = preg_replace('/^.*\/\s*/', '', $str);
$mth = 'Invalid Month';
if($month >= 1 && $month <= 12){
$mth = date("F", strtotime("2001-" . $month . "-01"));
}
return $mth.' '.$yr;
}
Call it as such.
[formatDate({yourXmlDate[1]})]