我經常發現自己在多個文件、表格等上輸入當前日期和時間。
是否有任何輕量級應用程式允許我僅使用簡單的鍵盤快捷鍵自動插入(或複製到剪貼簿)當前日期和時間(如果可能,以字母形式)?我對 Windows 解決方案感興趣。
答案1
你可以使用自動熱鍵。
一個例子來自自動熱鍵文檔:
:*:]d:: ; This hotstring replaces "]d" with the current date and time via the commands below.
FormatTime, CurrentDateTime,, M/d/yyyy h:mm tt ; It will look like 9/1/2005 3:53 PM
SendInput %CurrentDateTime%
return
來自 AutoHotkey 論壇的範例:當您按下熱鍵時輸入系統日期和/或時間:
$F12::
SetTitleMatchMode, 2
IfWinActive, Notepad
{
FormatTime, xx,, ddMMMyy ; This is one type of the date format
FormatTime, zz,, hh:mm:ss tt ; This is one type of the time format
SendInput, %xx%{Enter}
SendInput, %zz%
}
Return
看格式化時間取得可用日期格式的清單。
設定方法:
- 下載並安裝自動熱鍵_L,讓它與.ahk檔案關聯
- 複製上述任一範例,貼上到記事本中,然後使用副檔名儲存在某個位置
.ahk
,例如 My Documents/keys.ahk - 導航到您保存的文件並雙擊它
- 將 .ahk 腳本新增至您的啟動資料夾
答案2
除了將其複製並貼上到文件中之外,Microsoft Word 上還有一項功能可以執行此操作。
答案3
Phraseexpress 不僅可以做到這一點,而且還可以做更多的事情。 https://www.phraseexpress.com/
他們有一個免費版本,這就是我使用的。
用 {#date} {#datetime -f tt} 組成一個片語
我使用 ctrl alt t 作為熱鍵。
將其貼到計算機上的任何位置。