Main > Free Download Search >

Free text wagnerfischer 0.04 software for linux

text wagnerfischer 0.04

Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4579
Text::WagnerFischer 0.04

Text::WagnerFischer 0.04


Text::WagnerFischer is an implementation of the Wagner-Fischer edit distance. more>>
Text::WagnerFischer is an implementation of the Wagner-Fischer edit distance.

SYNOPSIS

use Text::WagnerFischer qw(distance);

print distance("foo","four");# prints "2"

print distance([0,1,2],"foo","four");# prints "3"


my @words=("four","foo","bar");

my @distances=distance("foo",@words);
print "@distances"; # prints "2 0 3"

@distances=distance([0,2,1],"foo",@words);
print "@distances"; # prints "3 0 3"

This module implements the Wagner-Fischer dynamic programming technique, used here to calculate the edit distance of two strings. The edit distance is a measure of the degree of proximity between two strings, based on "edits": the operations of substitutions, deletions or insertions needed to transform the string into the other one (and vice versa). A cost (weight) is needed for every of the operation defined above:

/ a if x=y (cost for letter match)
w(x,y) = | b if x=- or y=- (cost for insertion/deletion operation)
c if x!=y (cost for letter mismatch)

These costs are given through an array reference as first argument of the distance subroutine: [a,b,c]. If the costs are not given, a default array cost is used: [0,1,1] that is the case of the Levenshtein edit distance:

/ 0 if x=y (cost for letter match)
w(x,y) = | 1 if x=- or y=- (cost for insertion/deletion operation)
1 if x!=y (cost for letter mismatch)

This particular distance is the exact number of edit needed to transform the string into the other one (and vice versa). When two strings have distance 0, they are the same. Note that the distance is calculated to reach the _minimum_ cost, i.e. choosing the most economic operation for each edit.

<<less
Download (0.004MB)
Added: 2007-08-22 License: Perl Artistic License Price:
793 downloads
Text::Emoticon 0.04

Text::Emoticon 0.04


Text::Emoticon is a factory class for Yahoo! and MSN emoticons. more>>
Text::Emoticon is a factory class for Yahoo! and MSN emoticons.

SYNOPSIS

use Text::Emoticon;

my $emoticon = Text::Emoticon->new(MSN, { strict => 1, xhtml => 0 });
print $emoticon->filter(Hello ;));

Text::Emoticon is a factory class to dispatch MSN/YIM emoticon set. Its made to become handy to be used in other applications like Kwiki/MT plugins.

<<less
Download (0.002MB)
Added: 2006-12-14 License: Perl Artistic License Price:
1050 downloads
Save Text Area 0.4.7

Save Text Area 0.4.7


Save Text Area is designed as a simple to use and functional extension that adds File Open and Save functionality to editable text fields and areas, in effect turning them into notepads. more>> <<less
Added: 2011-01-08 License: MPL Price: FREE
downloads
 
Other version of Save Text Area
Save Text Area 0.4.6Alex Benenson - and Save functionality to editable text fields and areas, in effect turning them into notepads
Price: FREE
License:MPL
Download
1 downloads
Added: 2008-11-15
Yet Another Calendar 0.04

Yet Another Calendar 0.04


Yet Another Calendar is a malleable, clear, concise CGI calendar. more>>
Yet Another Calendar is a malleable, clear, concise CGI calendar. Yet Another Calendar project doesnt require a relational database server and uses a single page per month for editing and viewing.
Main features:
- XML/RSS export
- Palm datebook (.pdb) export
- Text export (tab delimited file)
- Single page for editing and viewing
- Optional start and end times for all events
- Edit history/change tracking (with an rcs cron job)
- Archiving of old events (also with a cron job)
- Small amount of source code (under 500 lines)
Enhancements:
- There are now links on the calendar for an XML/RSS feed, a Palm datebook (.pdb) file, and a tab delimited text file.
- A few minor bugfixes and enhancements were made.
<<less
Download (0.015MB)
Added: 2006-04-19 License: GPL (GNU General Public License) Price:
1283 downloads
Text::Perlate 0.94

Text::Perlate 0.94


Text::Perlate is created to be an efficient module which is designed to provide a simple translation system for writing files that are mostly text, TeX, HTML, XML, an email message, etc with some Perl code interspersed. more>> <<less
Added: 2010-09-07 License: Perl Artistic License Price: FREE
downloads
TEA text editor 29.0.3

TEA text editor 29.0.3


TEA text editor is made as a beneficial as well as smart program which can find as useful the new function, look at Markup - [X]HTML. more>> <<less
Added: 2011-05-20 License: GPL Price: FREE
downloads
 
Other version of TEA text editor
TEA text editor 29.0.0roxton - TEA text editor proves itself to be a beneficial as well as interesting
Price: FREE
License:GPL
Download
downloads
Added: 2011-04-01
TEA text editor 28.1.2roxton - TEA text editor is described as an advanced yet easy to use as well as modest and easy-to-use GTK 2
Price: FREE
License:GPL
Download
downloads
Added: 2010-09-22
TEA text editor 28.1.1TEA text editor is launched to be a convenient as well as professional text editor that provides ... of text-processing functions (over 100) and the syntax highlighting
Price: FREE
License:GPL
Download
downloads
Added: 2010-07-29
TEA text editor 25.0.0TEA text editor is designed as a useful tool depended on GTK+2.4 (or ... for you to utilize the power of GtkSourceView (as the text editing engine). TEA text editor 25.0
Price: FREE
License:GPL
Download
1 downloads
Added: 2009-07-26
web-archive-creator 0.04

web-archive-creator 0.04


web-archive-creator is described as a convenient as well as helpful tool that can be used to join the power of wget and the usability of the .war format, which Konqueror is able to browse. more>> <<less
Added: 2008-01-05 License: GPL v3 Price: FREE
1 downloads
Text::Emoticon::MSN 0.04

Text::Emoticon::MSN 0.04


Text::Emoticon::MSN is a Perl module with emoticon filter of MSN Messenger. more>>
Text::Emoticon::MSN is a Perl module with emoticon filter of MSN Messenger.

SYNOPSIS

use Text::Emoticon::MSN;

my $emoticon = Text::Emoticon::MSN->new(
imgbase => "http://example.com/emo",
);

my $text = "Yet Another Perl Hacker ;-)";
print $emoticon->filter($text);

# it prints
# Yet Another Perl Hacker

Text::Emoticon::MSN is a text filter that replaces text emoticons like ":-)", ";-P", etc. to the icons of MSN Messenger, detailed in http://messenger.msn.com/Resource/Emoticons.aspx

METHODS

new

$emoticon = Text::Emoticon::MSN->new(
imgbase => "http://yourhost.example.com/images/emoticons",
xhtml => 1,
class => "emoticon",
);

Constructs new Text::Emoticon::MSN object. It accepts two options:

imgbase

Base URL where icon gif files are located. It defaults to "http://messenger.msn.com/Resource/emoticons" (the MSN site) but I dont recommend that, as theres a possibility MSN will ban your site.

xhtml

Whether it uses XHTML style img tags. It defaults to 1.

class

CSS class used in img tags. It defaults to nothing.

$emoticon = Text::Emoticon::MSN->new(class => "emo");

will print:

< img src="blah.gif" class="emo" / >

strict

Whether it will disable smileys with space in them. defaults to 0.

filter

$filtered_text = $emoticon->filter($text);

Filters emoticons in text and returns img tagged text (HTML).

<<less
Download (0.003MB)
Added: 2006-12-18 License: Perl Artistic License Price:
1047 downloads
Java Text Table Formatter 0.96.3

Java Text Table Formatter 0.96.3


Java Text Table Formatter offers users with an easy to use as well as smart set of Java classes to help print text in tabulated form. more>> <<less
Added: 2011-08-30 License: GPL Price: FREE
downloads
 
Other version of Java Text Table Formatter
Java Text Table Formatter 0.96.2and effective set of Java classes to help print text in tabulated form
Price: FREE
License:GPL
Download
downloads
Added: 2010-08-09
Java Text Table Formatter 0.96.1David Farrell - Java Text Table Formatter is designed as a smart and useful set ... to help print text in tabulated form. Java Text
Price: FREE
License:GPL
Download
downloads
Added: 2010-07-25
Java Text Table Formatter 0.96.0as well as professional set of Java classes to help print text in tabulated form. Java Text Table
Price: FREE
License:GPL
Download
1 downloads
Added: 2008-04-10
String::Tokeniser 0.04

String::Tokeniser 0.04


String::Tokeniser is made to be a smart and proper program which provides an interface to a tokeniser class, allowing one to manipulate strings on a token-by-token basis without having to keep track of list element numbers and so on. more>> <<less
Added: 2010-09-13 License: Perl Artistic License Price: FREE
downloads
Amigadepacker 0.04

Amigadepacker 0.04


Amigadepacker is released as a simple yet effective tool which uncompresses various compression formats used on AmigaOS. more>>

Amigadepacker 0.04 is released as a simple yet effective tool which uncompresses various compression formats used on AmigaOS.

The supported formats are PowerPacker, XPK SQSH, and MMCMP. Amigadepacker can also decrypt PowerPacker encrypted data files.

Enhancements:

  • This release implements better MinGW support and improved documentation.
<<less
Added: 2008-08-25 License: GPL Price: FREE
1 downloads
Text::Fold 0.4

Text::Fold 0.4


Text::Fold is developed to be an interesting as well as helpful folding mechanism intended to turn a long string of text (possibly containg multiple lines) into multiple lines not exceeding a certain width. more>> <<less
Added: 2011-02-17 License: Perl Artistic License Price: FREE
downloads
Yahoo::Weather 0.04

Yahoo::Weather 0.04


Yahoo::Weather is regarded as a simple to use yet convenient module which will get you Weather for 4.5 Million Locations (approx) but one at a time either by ZIPCODE or Place Name. more>> <<less
Added: 2010-11-27 License: Perl Artistic License Price: FREE
downloads
Text-to-Image 1.4.3

Text-to-Image 1.4.3


Text-to-Image comes as an easy to use and dependable application which can convert text URLs and links to images into thumbnails. more>> <<less
Added: 2011-03-11 License: MPL Price: FREE
downloads
Text::Highlight 0.04

Text::Highlight 0.04


Text::Highlight is a syntax highlighting framework. more>>
Text::Highlight is a syntax highlighting framework.

SYNOPSIS

use Text::Highlight preload;
my $th = new Text::Highlight(wrapper => "
 %s 
n");
print $th->highlight(Perl, $code);

Text::Highlight is a flexible and extensible tool for highlighting the syntax in programming code. The markup used and languages supported are completely customizable. It can output highlighted code for embedding in HTML, terminal escapes for an ANSI-capable display, or even posting on an online forum. Bundled support includes C/C++, CSS, HTML, Java, Perl, PHP and SQL.

INSTALLATION

In order to install and use this package you will need Perl version 5.005 or better.

Installation as usual:

% perl Makefile.PL
% make
% make test
% su
Password: *******
% make install

<<less
Download (0.048MB)
Added: 2007-06-14 License: Perl Artistic License Price:
862 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5