TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 01-06-2010, 02:00 AM   #1 (permalink)
The Acquainted
 
Join Date: Feb 2008
Posts: 107
Thanks: 3
CΛSTΞX is on a distinguished road
Application Go How to > if values in array exist in the sentence ?

Hello,

I want to do something if my sentence include one of the words in this array, How to do that ?

PHP Code:
$sentence "I dont give a shit";

$values = array("lick","shit","pussy","horny"); 
Thanks...
__________________
Downloadic
infolizer
Send a message via MSN to CΛSTΞX
CΛSTΞX is offline  
Reply With Quote
Old 01-06-2010, 02:25 AM   #2 (permalink)
is cute and cuddly
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
delayedinsanity is on a distinguished road
Default

Regular expressions. Or if you want to go wal-mart cheap, explode the string into an array on spaces and use in_array(), but then you can't search for fragments.
delayedinsanity is offline  
Reply With Quote
Old 01-06-2010, 02:30 AM   #3 (permalink)
The Acquainted
 
Join Date: Feb 2008
Posts: 107
Thanks: 3
CΛSTΞX is on a distinguished road
Default

PHP Code:

$sentencearray 
explode(' ',$sentence);

foreach(
$sentencearray as $values)

if (
in_array($sentencearray$values)) {

// do something ?


Thanks, but it doesnt work.
__________________
Downloadic
infolizer
Send a message via MSN to CΛSTΞX
CΛSTΞX is offline  
Reply With Quote
Old 01-06-2010, 05:31 AM   #4 (permalink)
is cute and cuddly
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
delayedinsanity is on a distinguished road
Default

Well that's probably because you're looking for an array in a string. Also, once you switch the arguments of in_array(), you're suddenly looking for each word of the original string inside of, you guessed it, the original string. At least with the example code you posted, but you may have done that from memory and mixed it up, I'm not sure.

The above method I suggested WILL work if done correctly, but it starts to get complicated once you start factoring in capture of words with punctuation attached, or if you want to find word fragments. Your best bet is to look into regular expressions - the basics are easy to pick up, and from there you can get as wild as you want.

For example, a simple search could be done ala;

php Code:
$string = "This is the test string.";
$stopwords = array( 'bum', 'test' );

if ( preg_match( '~(' . implode( '|', $stopwords ) . ')~', $string ) ) {
    echo 'Found!';
}
delayedinsanity is offline  
Reply With Quote
Old 01-22-2010, 02:57 PM   #5 (permalink)
The Acquainted
 
Join Date: Feb 2008
Posts: 107
Thanks: 3
CΛSTΞX is on a distinguished road
Default

delayedinsanity, your code works nice. But how to make it no-case-sensitive ?
Thanks.
__________________
Downloadic
infolizer
Send a message via MSN to CΛSTΞX
CΛSTΞX is offline  
Reply With Quote
Old 01-22-2010, 03:47 PM   #6 (permalink)
The Wanderer
Newcomer 
 
Parvus's Avatar
 
Join Date: Aug 2008
Posts: 21
Thanks: 1
Parvus is on a distinguished road
Default

Info link: *Click me*

Here you can find: 'The "i" after the pattern delimiter indicates a case-insensitive search'
Parvus is offline  
Reply With Quote
Old 01-25-2010, 01:47 AM   #7 (permalink)
The Acquainted
 
Join Date: Feb 2008
Posts: 107
Thanks: 3
CΛSTΞX is on a distinguished road
Default

I tried this but it doesnt work with this script ?

PHP Code:
$string "Don't look at my Ass";

$ass "/ass/i";

$stopwords = array($ass"shit""pussy");

if ( 
preg_match'~(' implode'|'$stopwords ) . ')~'$string ) ) {
    echo 
'Found!';

__________________
Downloadic
infolizer
Send a message via MSN to CΛSTΞX
CΛSTΞX is offline  
Reply With Quote
Old 01-25-2010, 02:21 AM   #8 (permalink)
is cute and cuddly
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
delayedinsanity is on a distinguished road
Default

It's in the wrong spot.

Regular expressions use delimiters; characters that tell the compiler where the expression starts, and where it ends. Common delimeters are /, ~ or #, though it can technically be anything you choose. In the example I provided, the delimiter is ~, so the compiler will see the expression as;

php Code:
preg_match( '~(word|word|word)~' ....

The expression modifiers, such as i, need to be placed after the closing delimiter.

php Code:
preg_match( '~(' . implode( '|', $stopwords ) . ')~i' ....
delayedinsanity is offline  
Reply With Quote
The Following User Says Thank You to delayedinsanity For This Useful Post:
CΛSTΞX (01-25-2010)
Old 01-25-2010, 02:32 AM   #9 (permalink)
The Acquainted
 
Join Date: Feb 2008
Posts: 107
Thanks: 3
CΛSTΞX is on a distinguished road
Default

Thank you, this it what I need.

PHP Code:

$string 
"I look for erotic pics";

if (
preg_match'~(shit|horny|erotic)~i'$string)) {

echo 
"found";


__________________
Downloadic
infolizer
Send a message via MSN to CΛSTΞX
CΛSTΞX is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Return array values smrtalex Absolute Beginners 14 04-25-2009 11:00 PM
Array mess Killswitch Absolute Beginners 4 12-14-2008 07:35 AM
array elements into variables and values Dave Absolute Beginners 7 06-20-2008 01:56 PM
Changing Array Key Values ReSpawN Absolute Beginners 7 05-27-2008 09:31 PM
Part 1: Getting Started with Array Functions Wildhoney Absolute Beginners 6 10-01-2007 10:53 AM


All times are GMT. The time now is 07:49 PM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design