I want to get a formatted price but without the currency symbol and I want use only standard functionality of magento!
$product->getFinalPrice(); => 19
You could use the directory/currency model:
directory/currency
Mage::getModel('directory/currency')->formatTxt( $product->getFinalPrice(), array('display' => Zend_Currency::NO_SYMBOL) );