I have the following input text:
Teterboro US [TEB] - 20KM
I would like to get the following output :
Teterboro US
I am using the following expression :
.*\[
But it I am getting the following result
Teterboro US [
I would like to get rid of the last space and bracket " ["
I am using JavaScript.