<?php
$price= str_replace("\\", " ", $objVehicleData->getPrice());
$price= str_replace(",", " ", $price);
$price= str_replace("$", " ",$price);
$price= str_replace(" ", "",$price);
?>
The above code works.. But I am certain it can be made better in one line.. Can someone help please