I need to detect links and timestamps in text. The links I can already identify and click with help from the react-native-autolink library. In the case of timestamps, I need to identify in the following formats:
'00:00', '0:00', '00:00:00', '0:00:00'
With the help of the react-string-replace library, I was able to turn one of the timestamps into a Text tag and so click, but I did it manually and it's duplicating. my goal is to let all the timestamps clickable to make an audio player jump to the time that was clicked.Like what youtube does.
Repository link Detect-Timestamp-In-Text