Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#! Perl -w ## ## #shortcuts.pl -shortcut maintaining engine# ## ## use strict; use Text::xSV; my $shortcut_file = 'scuts'; #Define file that contains shortcuts my $output_file = 'sfile'; #Define file for output ########END OF USER INPUT######## my($sf,$of)=($shortcut_file,$output_file); sub set_shortcut { my $is_taken=0; print "Which shortcut character would you like (1 letter!)? (will +appear in brackets) "; chomp(my $char=<STDIN>); print "What text do you want it to print?\n"; chomp(my $text=<STDIN>); my $csv = new Text::xSV; $csv->open_file("$sf"); $csv->bind_header(); while ($csv->get_row()) { my ($shortcut) = $csv->extract(qw(shortcut)); if ($char eq $shortcut) { warn "Shortcut character already used!"; $is_taken=1; last; } } unless ($is_taken) { open(SF, ">>$sf"); print SF "$char,$text\n"; close(SF); } } sub get_shortcuts { print"\n"; my $csv = new Text::xSV; $csv->open_file("$sf"); $csv->bind_header(); while ($csv->get_row()) { my ($shortcut, $output) = $csv->extract(qw(shortcut output)); print "\{$shortcut\} produces $output\n"; } } sub new_doc { print "Type your note/doc (type {e} on a new line to end):\n"; open(OF, ">>$of"); while (my $line = <STDIN>) { last if $line =~ /\{e\}/; my %shortcuts; my $csv = new Text::xSV; $csv->open_file("$sf"); $csv->bind_header(); while ($csv->get_row()) { my ($shortcut, $output) = $csv->extract(qw(shortcut output +)); $shortcuts{$shortcut} = $output; } $line =~ s/\{(\w)\}+/$shortcuts{$1}/g; print OF $line; } close(OF); } sub get_doc { open(OF, "<$of"); while (<OF>) { print; } close(OF); } unless (-s $sf) { open(SF, ">>$sf"); print SF "shortcut,output\n"; close(SF); } print "Welcome to S.S.E. \{Steven's Shortcut Engine\}\n"; print "\t{s} to set a shortcut\n\t{o} to view the output file's conten +ts\n\t{n} to start typing to the output file\n\t{g} to view the short +cuts you've already made\n"; while(1) { print "\%> "; chomp(my $choice=<STDIN>); if ($choice =~ /\{s\}/) { set_shortcut(); } elsif ($choice =~ /\{n\}/) { new_doc(); } elsif ($choice =~ /\{g\}/) { get_shortcuts(); } elsif ($choice =~ /\{o\}/) { get_doc(); } }

In reply to Shortcuts engine for note taking by munchie

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 studying the Monastery: (5)
As of 2024-04-23 08:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found