Textonyms: Difference between revisions

From Rosetta Code
Content added Content deleted
Line 17: Line 17:


Use a word list and keypad mapping other than English.
Use a word list and keypad mapping other than English.

=={{header|Perl}}==
This uses a file named "words.txt" as the dictionary.
<lang perl>sub find {
my @m = qw/$ $ abc def ghi jkl mno pqrs tvu wxyz/;
(my $r = shift) =~ s{(\d)}{[$m[$1]]}g;
grep /^$r$/i, split ' ', `cat words.txt`; # cats don't run on windows
}

print join("\n", $_, find($_)), "\n\n" for @ARGV</lang>
Usage:
<pre>
./textnym.pl 7353284667 7361672
7353284667
rejections
selections

736672
senora

</pre>
Incidentially, it sort of supports wildcards:
<pre>
./textnym.pl '5432.*'
5432.*
liechtenstein

</pre>


=={{header|Ruby}}==
=={{header|Ruby}}==

Revision as of 20:24, 5 February 2015

Textonyms is a draft programming task. It is not yet considered ready to be promoted as a complete task, for reasons that should be found in its talk page.

When entering text on a phone's digital pad it is possible that a particular combination of digits corresponds to more than one word. Such are called textonyms.

Assuming the keys are as follows:

    2 -> ABC
    3 -> DEF
    4 -> GHI
    5 -> JKL
    6 -> MNO
    7 -> PQRS
    8 -> TUV
    9 -> WXYZ  

The task is to write a program that finds textonyms in this list of words Textonyms/wordlist

Extra credit:

Use a word list and keypad mapping other than English.

Perl

This uses a file named "words.txt" as the dictionary. <lang perl>sub find { my @m = qw/$ $ abc def ghi jkl mno pqrs tvu wxyz/; (my $r = shift) =~ s{(\d)}{[$m[$1]]}g; grep /^$r$/i, split ' ', `cat words.txt`; # cats don't run on windows }

print join("\n", $_, find($_)), "\n\n" for @ARGV</lang> Usage:

./textnym.pl 7353284667 7361672
7353284667
rejections
selections

736672
senora

Incidentially, it sort of supports wildcards:

./textnym.pl '5432.*'
5432.*
liechtenstein

Ruby

<lang ruby>

  1. Textonyms: Nigel Galloway February 4th., 2015.

Textonymes = Hash.new {|n, g| n[g] = [] } File.open("Textonyms.txt") do |file|

 file.each_line {|line|
   Textonymes[(n=line.chomp).gsub(/a|b|c|A|B|C/, '2').gsub(/d|e|f|D|E|F/, '3').gsub(/g|h|i|G|H|I/, '4').gsub(/p|q|r|s|P|Q|R|S/, '7')
                     .gsub(/j|k|l|J|K|L/, '5').gsub(/m|n|o|M|N|O/, '6').gsub(/t|u|v|T|U|V/, '8').gsub(/w|x|y|z|W|X|Y|Z/, '9')] += [n]
 }

end </lang>

Output:
puts Textonymes["7353284667"]

rejections
selections
puts Textonymes["736672"]

remora
senora