Tag: formatear
Formatear Número en PHP
by MigueliTUX on Aug.07, 2009, under Php
para formatear números en PHP, aquí les dejo esta rutina.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | /* |-------------------------------------------------------------- | Formatea Numeros | Parametros | numero : Numero a formatear | Retorno | Numero Formateado |-------------------------------------------------------------- */ function _formatea_numero($numero){ if (is_numeric($numero)) { $find = array('.', ',','$'); $numero = str_replace ($find, "", $numero); $numero=number_format($numero,0,",","."); } return $numero; } |
Formatear Números con ceros a la izquierda
by MigueliTUX on Aug.07, 2009, under VB.60
Aquí les dejo una función escrita en VB para formatear números
1 2 3 4 | Function FormatNumero(ByVal IStr As String, ByVal Longitud As Integer) As String 'formatea como número con ceros a la izquierda return String(Longitud - Len(IStr), "0") & IStr End Function |