I have a string of the following form:
No Status: not enough information to provide one. more research and data-gathering is required.
I am trying to remove everything after the ':' up to the first space after the '.', so that the result would be like the following:
No Status: more research and data-gathering is required.
Is there any regex that I can use to achieve this in JavaScript?