summaryrefslogtreecommitdiff
path: root/corpus/support/tokenizer.pl
diff options
context:
space:
mode:
authorChris Dyer <cdyer@allegro.clab.cs.cmu.edu>2014-12-29 19:20:49 -0500
committerChris Dyer <cdyer@allegro.clab.cs.cmu.edu>2014-12-29 19:20:49 -0500
commit379284b264f3246b2849369bfec7bb16cc701af3 (patch)
tree70cda42becf08bd55141d4223d43a6f2e81124e0 /corpus/support/tokenizer.pl
parent265face769871a3ac2c2ecf81ef498cdef6895f2 (diff)
deal with eur symbol
Diffstat (limited to 'corpus/support/tokenizer.pl')
-rwxr-xr-xcorpus/support/tokenizer.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/corpus/support/tokenizer.pl b/corpus/support/tokenizer.pl
index aa285be4..718d78cc 100755
--- a/corpus/support/tokenizer.pl
+++ b/corpus/support/tokenizer.pl
@@ -415,7 +415,7 @@ sub deep_proc_token {
}
## remove the ending periods that follow number etc.
- if($line =~ /^(.*(\d|\~|\^|\&|\:|\,|\#|\*|\%|\-|\_|\/|\\|\$|\'))(\.+)$/){
+ if($line =~ /^(.*(\d|\~|\^|\&|\:|\,|\#|\*|\%|€|\-|\_|\/|\\|\$|\'))(\.+)$/){
## 12~13. => 12~13 .
my $t1 = $1;
my $t3 = $3;
@@ -600,12 +600,12 @@ sub deep_proc_token {
## deal with "%"
- if(($line =~ /\%/) && ($Split_On_PercentSign > 0)){
+ if(($line =~ /\%|€/) && ($Split_On_PercentSign > 0)){
my $suc = 0;
if($Split_On_PercentSign >= 2){
- $suc += ($line =~ s/(\D)(\%+)/$1 $2/g);
+ $suc += ($line =~ s/(\D)(\%+|€+)/$1 $2/g);
}else{
- $suc += ($line =~ s/(\%+)/ $1 /g);
+ $suc += ($line =~ s/(\%+|€+)/ $1 /g);
}
if($suc){