Eliminate periods in AM/PM

Hi,

Looking to eliminate the periods in the AM/PM in:

$df(“EEE hhmma”,si(alarmd))$

Also looking to eliminate the periods in AM/PM on its own in a separate line.

EDIT:
One more:
$tf(si(alarmd))$

I want to eliminate the “from now” at the end.

Thank you in advance for any assistance.

Don’t rely on the built in formatting. On the first one just use the time without the am/pm option and add your own text am or pm depending on morning or afternoon:

$df(“EEE hh:mma”, si(alarmd))+(if(df(hh)>12,pm,am))$

And for the item with the “from now”, again just use the alarm time and add whatever text you want to have displayed as appropriate.

Thank you for the prompt response!