This:
:{ :log info [/system clock get date]}
Seems to return:
sep/22/2008
Is there a way to get it to only return “sep” or only check that it contains sep? All I want to know it what month it is.
Matt
This:
:{ :log info [/system clock get date]}
Seems to return:
sep/22/2008
Is there a way to get it to only return “sep” or only check that it contains sep? All I want to know it what month it is.
Matt
Try this
:log info [:pick [/system clock get date] 0 3]
As almost always, within hour of posting question I figured it out on my own. Yep, that works perfect. ;<)
Matt