Welcome to mirror list, hosted at ThFree Co, Russian Federation.

remove-segmentation-markup.perl « support « ems « scripts - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6333f813b01e84fa0e70023035f9cb6135b8512 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env perl 

use warnings;
use strict;

$|++;

while(<STDIN>) {
  s/ \|\d+\-\d+\| / /g; 
  s/ \|\d+\-\d+\|$//; 
  print $_;
}