Forum: CAT Tools Technical Help
Topic: How to convert TMX to tab-delimited?
Poster: Stepan Konev
Post title: Ah, line breaks
Well, the regex (\n|.) means either line break (\n) or (|) any character (.). Therefore it covers both single line segments and multiline segments. However manual work may be needed indeed to fix them (by removing the paragraph mark) before converting them into a 2-column table. A second option is to use a regex that only covers single line segments having sacrificed the multiline segments. Not sure which evil is lesser though.
Topic: How to convert TMX to tab-delimited?
Poster: Stepan Konev
Post title: Ah, line breaks
Well, the regex (\n|.) means either line break (\n) or (|) any character (.). Therefore it covers both single line segments and multiline segments. However manual work may be needed indeed to fix them (by removing the paragraph mark) before converting them into a 2-column table. A second option is to use a regex that only covers single line segments having sacrificed the multiline segments. Not sure which evil is lesser though.