We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In my logfile (android) I have dates in this format: 15/06/2022, 14:44 which is not recognized by TimeRegex_android.
15/06/2022, 14:44
Edit: It does work in parse_android though
The text was updated successfully, but these errors were encountered:
Here is a reprex:
library(stringi) TimeRegex_android <- c("(?!^)(?=((\\d{2}\\.\\d{2}\\.\\d{2})|(\\d{1,2}\\/\\d{1,2}\\/\\d{2})),\\s\\d{2}\\:\\d{2}((\\s\\-)|(\\s(?i:(am|pm))\\s\\-)))") excerpt <- "26/01/2024, 07:50 - A: 😂😂😂 26/01/2024, 08:31 - B: Yes thats funny" unlist(stri_extract_all(excerpt, regex = TimeRegex_android)) #> [1] NA
Created on 2024-01-28 with reprex v2.1.0
Sorry, something went wrong.
8f19766
No branches or pull requests
In my logfile (android) I have dates in this format:
15/06/2022, 14:44
which is not recognized by TimeRegex_android.Edit: It does work in parse_android though
The text was updated successfully, but these errors were encountered: