Date conversion to specific format using Angular pipes

Priyanka Patamsetti

I have a column in sql table with ts as format: this is the format I'm getting from database -

2020-12-07T08:02:00.000Z

I want this date to be converted in DD/MM/YYYY, 2:00 P.M format.

When I use the code below -

<span>{{ list.incentivetype_ts | date: 'dd/MM/yyyy'}}</span>

I'm getting DD/MM/YYYY format for date only, and when I use the code below -

<span>{{ list.incentivetype_ts | date: 'short'}}</span>

I'm getting output as -

MM/DD/YYYY, 2:00 P.M

What should we do in order to get the format as DD/MM/YYYY, 2:00 P.M.

Ganesh Sundaram

You can pass parameter to date pipe like this:

<p>
    {{ dateString | date:'dd/MM/YYYY hh:mm a' }}
</p>

stackblitz link

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

Convert timestamp to date using Angular 2 pipes

分類Dev

Convert timestamp to date using Angular 2 pipes

分類Dev

Convert timestamp to date using Angular 2 pipes

分類Dev

Default Date to JSON conversion format in Angular app

分類Dev

Using momentjs to format a date in a specific locale

分類Dev

Using Angular pipes to set css class

分類Dev

Format date string in a specific pattern

分類Dev

Parse Date and Time in specific format

分類Dev

ruby gsub string phone conversion into specific format

分類Dev

PHP date() to Excel serial format conversion

分類Dev

MySQL date interval with specific date format

分類Dev

Date time conversion in Javascript from format "/Date(1535515200000)/"

分類Dev

How to select specific date format in column

分類Dev

Angular 5 Material date picker does not support "DD/MM/YYYY" Format using input

分類Dev

oracle to_date conversion showing literal does not match string format

分類Dev

What is the Excel Date Format to retain dates in this specific format?

分類Dev

How to input a date with a specific date format in struts 2.2.3.1?

分類Dev

How to format date without year using Simple Date Format?

分類Dev

How to format date coming from the database in angular

分類Dev

Mask Input Value Date Format Angular

分類Dev

Group Array of objects into specific format using lodash

分類Dev

Using Moment to Validate Default Javascript Date Format

分類Dev

Make date column into standard format using pandas

分類Dev

JSON Field with date format using Javascript?

分類Dev

How to change date format using jQuery/Javascript?

分類Dev

How to get Date according to my timezone with specific format

分類Dev

Angular: Pipes vs methods in model

分類Dev

Can I convert a date in the format YYYYMMDDHHMM using date?

分類Dev

Selection of a specific date in Calendar Date-picker using Selenium with Python

Related 関連記事

  1. 1

    Convert timestamp to date using Angular 2 pipes

  2. 2

    Convert timestamp to date using Angular 2 pipes

  3. 3

    Convert timestamp to date using Angular 2 pipes

  4. 4

    Default Date to JSON conversion format in Angular app

  5. 5

    Using momentjs to format a date in a specific locale

  6. 6

    Using Angular pipes to set css class

  7. 7

    Format date string in a specific pattern

  8. 8

    Parse Date and Time in specific format

  9. 9

    ruby gsub string phone conversion into specific format

  10. 10

    PHP date() to Excel serial format conversion

  11. 11

    MySQL date interval with specific date format

  12. 12

    Date time conversion in Javascript from format "/Date(1535515200000)/"

  13. 13

    How to select specific date format in column

  14. 14

    Angular 5 Material date picker does not support "DD/MM/YYYY" Format using input

  15. 15

    oracle to_date conversion showing literal does not match string format

  16. 16

    What is the Excel Date Format to retain dates in this specific format?

  17. 17

    How to input a date with a specific date format in struts 2.2.3.1?

  18. 18

    How to format date without year using Simple Date Format?

  19. 19

    How to format date coming from the database in angular

  20. 20

    Mask Input Value Date Format Angular

  21. 21

    Group Array of objects into specific format using lodash

  22. 22

    Using Moment to Validate Default Javascript Date Format

  23. 23

    Make date column into standard format using pandas

  24. 24

    JSON Field with date format using Javascript?

  25. 25

    How to change date format using jQuery/Javascript?

  26. 26

    How to get Date according to my timezone with specific format

  27. 27

    Angular: Pipes vs methods in model

  28. 28

    Can I convert a date in the format YYYYMMDDHHMM using date?

  29. 29

    Selection of a specific date in Calendar Date-picker using Selenium with Python

ホットタグ

アーカイブ