Given a string: 'aaa bbbb cccc'
or a string: 'aaaa bbb cc'
I want to find and delete any word within a string with 3 or less chars.
so I would get:
'bbbb cccc'
'aaaa'
as results after processing.
How would I do this in PHP?
Thanks
or a string: 'aaaa bbb cc'
I want to find and delete any word within a string with 3 or less chars.
so I would get:
'bbbb cccc'
'aaaa'
as results after processing.
How would I do this in PHP?
Thanks
Comment