I need everything that's behind the second-to-last comma and space of my string.
Example:
input:
Jan 23, 2023, October 23, 2022, 2 October 23, 2022, Jan 23, 2023
output: Jan 23, 2023, October 23, 2022, 2 October 23, 2022
I tried this but this gives me the contrary result and it doesn't handle the space.
([^,]+),[^,]+$