Ive got a string that are words bunched together and I need to seperate them, and every word that ends in 'A' should probably be on a new line,
item onea second itema third
I also need to check if the word ending in 'A' should actually end in 'A' like extra or sultana.
item oneasecond itemand an extra item
I have an array full of words ending in 'A' from this website http://www.morewords.com/ends-with/a so I just need the preg_replace function.
I really am learning everytime someone answers a question here so again thanks for everyones time and patience

item onea sultana is an itemwould check the end letter of the wordsultanaand see thatsultanais in the array and not recplace, althoughoneawould not be in the array so it would be replaced. It would need to check every word ENDING ina– bluedaniel Oct 7 at 11:38