From 68acbb9a0c7967cb90a7e3756fc94fdd8a73d154 Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Wed, 29 Jan 2014 19:14:08 +0100 Subject: make use of nlp_ruby, LICENSE --- rule_shapes | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'rule_shapes') diff --git a/rule_shapes b/rule_shapes index 039b0dc..fd42249 100755 --- a/rule_shapes +++ b/rule_shapes @@ -3,11 +3,12 @@ STDIN.set_encoding 'utf-8' STDOUT.set_encoding 'utf-8' + def shape s res = [] in_t = false s.split.each { |i| - if i.match /\A\[X,\d\]\z/ + if i.match(/\A\[X,\d\]\z/) if in_t in_t = false end @@ -22,7 +23,7 @@ def shape s end while line = STDIN.gets - f,e = line.split "\t" + f, e = line.split(/\t/) f.strip!; e.strip! puts shape(f).join('_')+"-"+shape(e).join('_') end -- cgit v1.2.3