4

I want to format time in angular 6 in html file...i am writing this for now but it is not working.

<h5>{{"14:25:23" | date:'hh:mm a'}}</h5>

Any one can suggest or any answer how can i do.

mruanova
  • 6,351
  • 6
  • 37
  • 55
Vijay Prajapati
  • 208
  • 1
  • 5
  • 19

3 Answers3

1

I think you were looking for DatePipe, here a link to your answer I just found in slack see this example

Oswaldo Zapata
  • 657
  • 8
  • 9
1

It's nothing wrong with pipe. The only thing you have to change is your data format:

<h5>{{"2019-01-01T14:25:23" | date:'hh:mm a'}}</h5>

The output will be 02:25 PM

1

Please try this

{{ dateObj | date:'medium' }}

It's Working :)