* How to get the current date in a plugin?
How to get the current date in a plugin?
What is the best way to get the current date in a plugin?
- tatewise
- Megastar
- Posts: 27080
- Joined: 25 May 2010 11:00
- Family Historian: V7
- Location: Torbay, Devon, UK
- Contact:
Re: How to get the current date in a plugin?
local dpToday = fhCallBuiltInFunction("Today") in FH datepoint format
or
local today = os.date ([format [, time]]) in various formats ~ see Lua Ref Manual os library for details.
It can return a string or a table of values for each date & time component.
or
local today = os.date ([format [, time]]) in various formats ~ see Lua Ref Manual os library for details.
It can return a string or a table of values for each date & time component.
Mike Tate ~ researching the Tate and Scott family history ~ tatewise ancestry
Re: How to get the current date in a plugin?
Thanks Mike, I tried this, but it seems to be a date object and I like to use it as text.
- tatewise
- Megastar
- Posts: 27080
- Joined: 25 May 2010 11:00
- Family Historian: V7
- Location: Torbay, Devon, UK
- Contact:
Re: How to get the current date in a plugin?
It is possible to convert a datepoint to a date and then to text but the os.date function is probably easier.
Mike Tate ~ researching the Tate and Scott family history ~ tatewise ancestry
Re: How to get the current date in a plugin?
Yes, that's what I was looking for. Thanks!
- tatewise
- Megastar
- Posts: 27080
- Joined: 25 May 2010 11:00
- Family Historian: V7
- Location: Torbay, Devon, UK
- Contact:
Re: How to get the current date in a plugin?
e.g.
local strToday = os.date() produces the default 05/03/2021 22:08:24
local strToday = os.date("%d %B %Y") produces 05 March 2021
See https://www.tutorialspoint.com/c_standa ... rftime.htm for format options.
local strToday = os.date() produces the default 05/03/2021 22:08:24
local strToday = os.date("%d %B %Y") produces 05 March 2021
See https://www.tutorialspoint.com/c_standa ... rftime.htm for format options.
Mike Tate ~ researching the Tate and Scott family history ~ tatewise ancestry