How do i break a line that comes from a www

I have a game that use a topscore board. And it comes from a php page by WWW. And i need a way to break the line from the string he sends to me. Any suggestions?

What does it mean “break the line”? There’s yourWWW.text.Split(’
') (there’s a “backslash” before “n” but the system here doesn’t display it) to split the string into an array by using the “new line character” as delimiter.