Does anyone know what the regex to get the following result:
Hello world, Another day to die. => Hello world
I'm trying the following expression:
/^.*,/
But the result is 'Hello world!'
I want to ignore the last character (!). Can anyone give me a hand?
Best regards.