Results 1 to 10 of 18
Threaded View
-
8th Aug 2010, 10:14 PM #11Respected Developer
How about
PHP Code:<?php
function clean($txt)
{
// remove everything that is not a word, _, -, whitespace or a number
$result = preg_replace('/[^\w\d\s\-]+/', '', $txt);
// replace numbers with a space
$result = preg_replace('/\d+/', ' ', $result);
// remove words <= 3 chars
$result = preg_replace('/\b\w{1,3}\b/', '', $result);
// trim spaces
$result = preg_replace('/[ ]{2,}/', ' ', $result);
// trim spaces at the end or beginning of lines
$result = preg_replace('/[ ]*(\r{0,1}\n)[ ]*/', '$1', $result);
return $result;
}
?>
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Preg and Sql
By Chris2k in forum Web Development AreaReplies: 6Last Post: 28th Apr 2012, 02:19 PM -
Which is the best replace tools
By tcnnvnn in forum Webmaster DiscussionReplies: 5Last Post: 29th Sep 2011, 09:40 AM -
Preg Replace question
By Porsche_maniak in forum Web Development AreaReplies: 7Last Post: 7th Nov 2010, 08:58 AM -
how to replace word in vb4
By m107 in forum vBulletinReplies: 13Last Post: 4th Sep 2010, 09:20 AM -
how to replace bad words?
By wman in forum vBulletinReplies: 2Last Post: 19th Feb 2009, 12:18 PM
themaCreator - create posts from...
Version 3.57 released. Open older version (or...