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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.