0 votos

Cómo rellenar o agregar ceros a la izquierda a los meses

¿Cómo relleno o agrego ceros a la izquierda a los meses? Por ejemplo, mayo devolvería "05"

 set the_month_new to button returned of (display dialog "Choose a month:" buttons {"April", "May", "June"})

(run script the_month_new) as integer

1voto

David Anderson Puntos 2189

Intente lo siguiente.

 set the_month_new to button returned of (display dialog "Choose a month:" buttons {"April", "May", "December"})

set the_month to (run script the_month_new) as integer

if the_month is less than 10 then
    set the_month to "0" & the_month
else
    set the_month to the_month as string
end if

AppleAyuda.com

AppleAyuda es una comunidad de usuarios de los productos de Apple en la que puedes resolver tus problemas y dudas.
Puedes consultar las preguntas de otros usuarios, hacer tus propias preguntas o resolver las de los demás.

Powered by:

X