El date-and-time.Date.preparse() analiza previamente la fecha de acuerdo con un patrón determinado.
Módulo requerido: instale el módulo por npm o utilícelo localmente.
- Usando npm.
npm install date-and-time --save
- Mediante el uso de un enlace CDN.
<script src="/path/to/date-and-time.min.js"></script>
Sintaxis:
preparse(dateString, arg)
Parámetros : este método toma los siguientes argumentos como parámetros:
- dateString: Es el objeto de string de la fecha.
- arg: Es el formato de fecha requerido.
Valor devuelto: este método devuelve la fecha y la hora analizadas.
Ejemplo 1:
index.js
// Node.js program to demonstrate the // Date.preparse() method // Importing module const date = require('date-and-time') // Creating object of current date and time // by using Date() const now = new Date('07-03-2021'); // Pre parsing the date and time // by using date.preparse() method const value = date.preparse(now.toLocaleDateString(),'D/M/YYYY'); // Display the result console.log(value)
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
{ Y: 2021, M: 3, D: 7, H: 0, A: 0, h: 0, m: 0, s: 0, S: 0, Z: 0, _index: 8, _length: 8, _match: 3 }
Ejemplo 2:
index.js
// Node.js program to demonstrate the // Date.preparse() method // Importing module const date = require('date-and-time') // Pre parsing the date and time // by using date.preparse() method const value = date.preparse('23:14:05 GMT+0900','HH:mm:ss [GMT]Z'); // Display the result console.log("pre parsed date and time : " + value._length)
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
pre parsed date and time : 17
Referencia : https://github.com/knowledgecode/date-and-time
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA