Results 1 to 10 of 18
Threaded View
-
8th Aug 2010, 10:27 PM #15OPGoogle Corp.
^ that shouldn't be a problem since they are only 1-liner's
thanks for all the help m8
got it down to this:
PHP Code:function clean($txt)
{
// remove everything that is not a word, _, -, whitespace or a number
$result = preg_replace('/([^\w\d\s\-]+|\b[\w]{1,3}\b)/', '', $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);
$result = trim($result);
return $result;
}
Life asked Death: "Why do people love me, but hate you?"
Death responded: "Because you're a beautiful lie and I'm the painful truth."
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.53 released. Open older version (or...