fork download
  1. $source = "Bacteria are special tiny living organisms. Bacteria can't be seen without a microscope because they are too small. Bacteria were first discovered in the 1660s by Antony van Leeuwenhoek.";
  2. $question = "Why bacteria can't be seen without a microscope?";
  3.  
  4. #parse question:
  5. $question =~ /Why (.*?)\?/; #Apply regex, parenthetical group goes into $1
  6. $whyquestion = $1;
  7.  
  8. #look for answer in source - returns true if found the question, literal " because ", more chars (go in $1), literal period; ignore case:
  9. if ($source =~ /$whyquestion because (.*?)\./i){
  10. $answer = $1; #if we're here we found the answer!
  11. print "You asked why ", lc $whyquestion, ".\n";
  12. print "I think it's because ", $answer, ".\n";
  13. }
  14. else {
  15. print "Beats me.\n";
  16. }
Success #stdin #stdout 0s 6044KB
stdin
Standard input is empty
stdout
You asked why bacteria can't be seen without a microscope.
I think it's because they are too small.