Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I was watching the Empire Strikes Back this evening and I wanted to see if I could write a sub to translate a normal sentence into Yoda-speak (read: too much free time). So here it is. I am welcome to suggestions, improvments, or more pivot words.


#!/usr/local/bin/perl -w use strict; my @sentences = ('I will teach you', 'The truth is out there', 'That is an Imperial shuttle', 'My husband is giant dork', #this is my wife's s +uggestion 'These fish are tasty' ); foreach (@sentences) { print yoda($_)."\n"; } sub yoda { my ($sentence) = @_; my @pivot_words = qw/is be will show do try are teach have/; # Find out if I have a pivot word and grab the one with the lowest + index my $pivot = (sort { $a->[1] <=> $b->[1]} grep {$_->[1] > 0} map { [" $_ ",index($sentence," $_ ")] } @pivot_word +s)[0]; #^^^^^^ ^^^^^^^ # Change to fix the pr +oblem [zdog] # pointed out - THX [z +dog] # No pivot words return $sentence if (!$pivot); # Pivot the sentence $sentence = substr($sentence,$pivot->[1]+length($pivot->[0]),lengt +h($sentence)). " ". substr($sentence,0,$pivot->[1]). $pivot->[0]; # Clear leading spaces $sentence =~ s/^\s+//; # Sentence case $sentence = ucfirst(lc($sentence)); }

Update: Fixed to handle pivot words inside another word.

Update 2: Fixed the word boundry problem with a better solution. The new sub follows:

sub yoda { my ($sentence) = @_; my @pivot_words = qw/is be will show do try are teach have/; # Find out if I have a pivot word and grab the one with the lowest + index my $pivot = (sort { $a->[1] <=> $b->[1]} # sort the lowest index to the top grep {$_->[1] > 0} # filter out non-matches map{$sentence =~ /\b$_\b/ ? [$_,$+[0]] : [$_,0]} @pi +vot_words)[0]; # create an anon array in the format # ['pivot word',index_of_where_it_is] # # @+ stores the indexes of the successful matches and + does not # require the gyrations that [pos] does # No pivot words return $sentence if (!$pivot); # Pivot the sentence $sentence = substr($sentence,$pivot->[1]). " ". substr($sentence,0,$pivot->[1]); # Clear leading spaces $sentence =~ s/^\s+//; # Sentence case $sentence = ucfirst(lc($sentence)); }


grep
Unix - where you can throw the manual on the keyboard and get a command

In reply to Yoda Speak Translator by grep

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (2)
As of 2024-04-20 06:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found