Consider the following string:
I have been driving to {Palm.!.Beach:100} and it . was . great!!
I use the following regex to delete all punctuation:
$string preg_replace('/[^a-zA-Z ]+/', '', $string);
This outputs:
I have been driving to PalmBeach and it was great!!
But I need the regex to always ignore whatever is in between { and }. So the desired output would be:
I have been driving to {Palm.!.Beach:100} and it was great
How can I let the regex ignore what is between { and }?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…