1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
########################################################################
#
# format is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; see the file COPYING. If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
#
########################################################################
#
# Project : File Preprocessor - format module
# Filename : $RCSfile: format.pm,v $
# Author : $Author: darren $
# Maintainer : Darren Miller: darren@cabaret.demon.co.uk
# File version : $Revision: 1.6 $
# Last changed : $Date: 2002/01/06 21:23:12 $
# Description : This implements text formatting routines
# Licence : GNU copyleft
#
########################################################################
# THIS IS A FILEPP MODULE, YOU NEED FILEPP TO USE IT!!!
# usage: filepp -m format.pm <files>
########################################################################
package Format;
use strict;
# version number of module
my $VERSION = '1.0.0';
require "function.pm";
##############################################################################
# CleanStartEnd($sline) - strip leading whitespace from start and end of
# $sline
##############################################################################
sub CleanStartEnd
{
my $sline = shift;
for($sline) {
# '^' = start of line, '\s+' means all whitespace, replace with nothing
s/^\s+//;
# '$' = end of line, '\s+' means all whitespace, replace with nothing
s/\s+$//m;
}
return $sline;
}
########################################################################
# Similar to C and Perl printf statement
# usage: printf(format, items...)
########################################################################
sub Printf
{
my @Args = reverse(@_);
my $arg;
# remove double quotes from input args if there
foreach $arg (@Args) { # remove "" from start/end of strings
if($arg =~ /\A\s*\"/ && $arg =~ /\"\s*\Z/) {
$arg = CleanStartEnd($arg);
$arg = Filepp::Strip($arg, "\"", 1);
}
}
my $format = pop(@Args);
# replace \n, \t etc with newline, tab, etc.
# HELP: there must be a better way than this, I've tried qq/$foramt/,
# regexps $format =~ s/\\(.)/"\\$1"/eg etc.
# and this only working solution I have found.
$format =~ s/\\t/"\t"/ge; # tab
$format =~ s/\\n/"\n"/ge; # newline
$format =~ s/\\r/"\r"/ge; # return
$format =~ s/\\f/"\f"/ge; # formfeed
$format =~ s/\\b/"\b"/ge; # backspace
$format =~ s/\\a/"\a"/ge; # alarm
$format =~ s/\\e/"\e"/ge; # escape
return sprintf($format, reverse(@Args));
}
Function::AddFunction("printf", "Format::Printf");
########################################################################
# converts input to upper case
# usage: toupper(string)
########################################################################
sub ToUpper
{
my $string = shift;
return uc($string);
}
Function::AddFunction("toupper", "Format::ToUpper");
########################################################################
# converts first char of input to upper case
# usage: toupper(string)
########################################################################
sub ToUpperFirst
{
my $string = shift;
return ucfirst($string);
}
Function::AddFunction("toupperfirst", "Format::ToUpperFirst");
########################################################################
# converts input to lower case
# usage: tolower(string)
########################################################################
sub ToLower
{
my $string = shift;
return lc($string);
}
Function::AddFunction("tolower", "Format::ToLower");
########################################################################
# converts first char of input to lower case
# usage: tolower(string)
########################################################################
sub ToLowerFirst
{
my $string = shift;
return lcfirst($string);
}
Function::AddFunction("tolowerfirst", "Format::ToLowerFirst");
########################################################################
# extract a substring out of input
# usage: substr(string, offset, len)
########################################################################
sub Substr
{
my $string = shift;
my $offset = shift;
if($#_ >= 0) { # also got length arg
my $length = shift;
return substr($string, $offset, $length);
}
return substr($string, $offset);
}
Function::AddFunction("substr", "Format::Substr");
return 1;
########################################################################
# End of file
########################################################################
|