PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I've got a file of email addresses that was exported from and AOL address book. all the email addresses are separted by a comma and a space. I want to convert it to a single column (each email address seperated by carriage return. What is the easiest way to do this?
OK actually. This conversion is for a text file to be imported into an bulkd emailer program. I have the text file (comma and space delimited) that I want to replace the comma space with a carriage return. It not for a php application. I gues you'd say I wnat to convert it from ", " delimited to "Carriage return" or "next line" delimited without doing it manually. Like a search and replace. The problem is doing a search and replace using ASCII code.