Logic programming with glob patterns

  • 15 Replies
  • 9496 Views
*

8pla.net

  • Trusty Member
  • ***********
  • Eve
  • *
  • 1302
  • TV News. Pub. UAL (PhD). Robitron Mod. LPC Judge.
    • 8pla.net
Re: Logic programming with glob patterns
« Reply #15 on: March 06, 2016, 10:36:11 pm »
Pseudocode quoted from Zero:

Code
Knowledge:
  the sky is blue
  the sky is big

Query:
  the sky is *

Answer:
  blue
  big

Here is a version written in PHP:

Code
<?php

/* Knowledge */

$knowledge=array(
  "the sky is blue",
  "the sky is big",
                );

/* Query */

foreach($knowledge as $key=>$query)
       {
       preg_match("/the sky is (.*)/i",$query,$matches);
       $matched[]=$matches;
       }

/* Answer */
  echo "Answer ".var_export($matched,TRUE)."\n";


?>


   Answer array (
     0 =>
     array (
       0 => 'the sky is blue',
       1 => 'blue',
     ),
     1 =>
     array (
       0 => 'the sky is big',
       1 => 'big',
     ),
   )

My Very Enormous Monster Just Stopped Using Nine

 


OpenAI Speech-to-Speech Reasoning Demo
by MikeB (AI News )
March 31, 2024, 01:00:53 pm
Say good-bye to GPUs...
by MikeB (AI News )
March 23, 2024, 09:23:52 am
Google Bard report
by ivan.moony (AI News )
February 14, 2024, 04:42:23 pm
Elon Musk's xAI Grok Chatbot
by MikeB (AI News )
December 11, 2023, 06:26:33 am
Nvidia Hype
by 8pla.net (AI News )
December 06, 2023, 10:04:52 pm
How will the OpenAI CEO being Fired affect ChatGPT?
by 8pla.net (AI News )
December 06, 2023, 09:54:25 pm
Independent AI sovereignties
by WriterOfMinds (AI News )
November 08, 2023, 04:51:21 am
LLaMA2 Meta's chatbot released
by 8pla.net (AI News )
October 18, 2023, 11:41:21 pm

Users Online

311 Guests, 0 Users

Most Online Today: 316. Most Online Ever: 2369 (November 21, 2020, 04:08:13 pm)

Articles