From da222df300e4f87ad185a7decbf119ad56aa34e0 Mon Sep 17 00:00:00 2001 From: Chris Dyer Date: Fri, 29 Jan 2010 15:56:59 +0000 Subject: word aligner checkin --- word-aligner/ortho-norm/en.pl | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 word-aligner/ortho-norm/en.pl (limited to 'word-aligner/ortho-norm/en.pl') diff --git a/word-aligner/ortho-norm/en.pl b/word-aligner/ortho-norm/en.pl new file mode 100755 index 00000000..b167803e --- /dev/null +++ b/word-aligner/ortho-norm/en.pl @@ -0,0 +1,11 @@ +#!/usr/bin/perl -w +use strict; +use utf8; + +while() { + $_ = lc $_; + s/ al-/ al/g; + s/^al-/al/; + print; +} + -- cgit v1.2.3