collocatordb: replace "<num>" with "###"
diff --git a/collocatordb.cc b/collocatordb.cc
index 8234739..f53c126 100644
--- a/collocatordb.cc
+++ b/collocatordb.cc
@@ -689,7 +689,7 @@
     else
       first = false;
     s << "{"
-      "\"word\":\"" << string(_vocab[c.w2].word) << "\"," <<
+      "\"word\":\"" << (string(_vocab[c.w2].word).compare("<num>") == 0? string("###") : string(_vocab[c.w2].word)) << "\"," <<
       "\"rank\":" << c.w2    << "," <<
       "\"f\":" << c.raw    << "," <<
       "\"npmi\":" << c.npmi  << "," <<