Analyser une date depuis une chaîne de caractères

Arduino:
Analyser une date depuis une chaîne de caractères

Comment faire :

Approche directe sans bibliothèque tierce :

#include <Wire.h>
#include <RTClib.h>

void setup() {
  Serial.begin(9600);
  // Exemple de chaîne de date au format AAAA-MM-JJ
  String dateString = "2023-04-01"; 

  int year = dateString.substring(0, 4).toInt();
  int month = dateString.substring(5, 7).toInt();
  int day = dateString.substring(8, 10).toInt();

  // Initialiser un objet DateTime avec les composants analysés
  DateTime parsedDate(year, month, day);
  
  Serial.print("Date analysée : ");
  Serial.print(parsedDate.year(), DEC);
  Serial.print("/");
  Serial.print(parsedDate.month(), DEC);
  Serial.print("/");
  Serial.println(parsedDate.day(), DEC);
}

void loop() {}

Exemple de sortie :

Date analysée : 2023/4/1

Utilisation d’une bibliothèque tierce (ArduinoJson pour des scénarios d’analyse plus complexes, tels que l’obtention d’une date à partir d’une réponse JSON) :

D’abord, installez la bibliothèque ArduinoJson via le Gestionnaire de bibliothèques Arduino.

#include <ArduinoJson.h>

void setup() {
  Serial.begin(9600);

  // Simulation d'une réponse JSON
  String jsonResponse = "{\"date\":\"2023-07-19\"}";
  StaticJsonDocument<200> doc;
  deserializeJson(doc, jsonResponse);

  // Extraction de la chaîne de date
  const char* date = doc["date"];

  // Analyser la date à partir de la chaîne comme précédemment
  int year = String(date).substring(0, 4).toInt();
  int month = String(date).substring(5, 7).toInt();
  int day = String(date).substring(8, 10).toInt();
  
  Serial.print("Date analysée à partir du JSON : ");
  Serial.print(year);
  Serial.print("/");
  Serial.print(month);
  Serial.print("/");
  Serial.println(day);
}

void loop() {}

Exemple de sortie :

Date analysée à partir du JSON : 2023/7/19