4 votos

AppleScript: Cómo obtener el tiempo sin segundos? Alternativamente, cómo quitar de texto en medio de la cadena?

Si utiliza el siguiente código:

set CurrentTime to (time string of (current date))

El CurrentTime se establece en el siguiente formato:

12:02:38 PM

Sin embargo, quiero CurrentTime :

12:02 PM

Por lo tanto, quiero eliminar los caracteres en la 6, 7, y 8 posiciones en la cadena.

¿Cómo puede lograrse esto en AppleScript? Gracias.

5voto

hjdm Puntos 18

Puedes usar algo como esto:

set CurrentTime to (do shell script "date +\"%l:%M %p\" | awk '{$1=$1;print}'")

Hay más información sobre date y sus modificadores en cyberciti.

%l - hour (1..12)
%M - minute (00..59)
%p - locale's equivalent of either AM or PM; blank if not known

3voto

user3439894 Puntos 5883

Aquí es un AppleScript subrutina he encontrado haciendo una búsqueda en Google que hace lo que le pide.

on getTimeInHoursAndMinutes()
    -- Get the "hour"
    set timeStr to time string of (current date)
    set Pos to offset of ":" in timeStr
    set theHour to characters 1 thru (Pos - 1) of timeStr as string
    set timeStr to characters (Pos + 1) through end of timeStr as string

    -- Get the "minute"
    set Pos to offset of ":" in timeStr
    set theMin to characters 1 thru (Pos - 1) of timeStr as string
    set timeStr to characters (Pos + 1) through end of timeStr as string

    --Get "AM or PM"
    set Pos to offset of " " in timeStr
    set theSfx to characters (Pos + 1) through end of timeStr as string

    return (theHour & ":" & theMin & " " & theSfx) as string
end getTimeInHoursAndMinutes

set CurrentTime to getTimeInHoursAndMinutes()

1voto

meataxe Puntos 6

Uno de AppleScript-única opción es:

# your line
set CurrentTime to (time string of (current date))
# place all the words of the time string into a list
set EveryWord to every word of CurrentTime
# do a very basic test on what we got and assemble the string using the parts plus separators
if length of EveryWord = 4 then
    # if we have 4 words, there must be a form of AM/PM
    set CurrentTime to item 1 of EveryWord & ":" & item 2 of EveryWord & " " & item 4 of EveryWord
else
    # 24-hour clock
    set CurrentTime to item 1 of EveryWord & ":" & item 2 of EveryWord
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