Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fromMillis not handling PN picture string #276

Closed
alexwoodgate opened this issue Sep 28, 2023 · 0 comments · Fixed by #277
Closed

fromMillis not handling PN picture string #276

alexwoodgate opened this issue Sep 28, 2023 · 0 comments · Fixed by #277

Comments

@alexwoodgate
Copy link
Contributor

Originally raised in base JSONATA jsonata-js/jsonata#574 and fixed in PR jsonata-js/jsonata#644

I'm trying to format a timestamp with the AM/PM marker in uppercase with $fromMillis(). Looking at the JSONata doc https://docs.jsonata.org/date-time-functions#frommillis which points to https://www.w3.org/TR/xpath-functions-31/#date-picture-string I can see some examples with [PN] for upper case (3:58 PM format-time($t, "[h]:[m01] [PN]", "en", (), ()) ) and [Pn] for lower case (3:58:45 pm format-time($t, "[h]:[m01]:[s01] [Pn]", "en", (), ()).

I've tried out some equivalent picture values on https://try.jsonata.org/ with:
$fromMillis($millis(), "[h]:[m01] [Pn]") which also returns "10:17 am" (Correct)
$fromMillis($millis(), "[h]:[m01] [PN]") which returns "10:17 am" (I believe this is incorrect and should be "10:17 AM")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant