Jump to content

Splitting Text


eits

Recommended Posts

Hi, I am looking at someway to split a variable $data. Several times! For example say that $data was:

Hello, PHP Freaks is cool. I want to be able to split this.

 

I would like to be able to split it into three parts:

$part1 = Hello, PHP Freaks is

$part2 = cool. I want to be

$part3 = able to split this.

 

I am looking to do this by using words which only appear once in the data. Pleas ehelp!

 

 

Link to comment
https://forums.phpfreaks.com/topic/88360-splitting-text/
Share on other sites

you'll have to use heavy regular expression to extract data from html files here just a simple example

 

<?php

$strHtml = <<< EOF
<html>
<head>
<title>This is the title</title>
</head>
<body>
<h1>Some H1 Text</h1>
some text
</body>
</html>
EOF;

preg_match("#<h1>(.*?)</h1>#",$strHtml,$arrMatches);
print_r($arrMatches[1]);

?>

 

hope its helpful...

Link to comment
https://forums.phpfreaks.com/topic/88360-splitting-text/#findComment-452229
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.