Can’t figure this one out…
I need a regular expression to use in PHP for removing particular text from a text string…
My text strings are like this:
“The product we’re talking about [Art.0430000] is a good product”
“The product we’re talking about [Art.0430001] is a good product”
“The product we’re talking about [Art.7852000] is a good product”
I need to remove [Art.0430000], [Art.0430001], [Art.7852000] from the strings…
If you also want to compress the white space left over (2 spaces to 1 space);