How to Remove Currency Symbol from Product Price in Magento 1.9

magento-1.9priceseo

Based on this link, to follow schema.org formatting, the price must not come with any symblos. How can I remove the currency symbol from price?

Solution:

Thanks for the tips, the SEO solution I applied is

<div class="no-display" itemprop="offers" itemscope itemtype="http://schema.org/Offer">       
   <span itemprop="price"><?php echo Mage::helper('core')->currency($_product->getFinalPrice(), false, false); ?></span>
</div>

Best Answer

Based on this link, below code worked for me

Mage::helper('core')->currency($_yourPriceToFormat, false, false);