Forum: CAT Tools Technical Help
Topic: Who knows a regular expression for this "garbage"?
Poster: Stepan Konev
Post title: Regex
[quote]Hans Lenting wrote:
Of course the regular expression isn't completely valid, since the segments contain non-letter characters too, but it is fine enough.[/quote]You can use \S{30,} instead. \S = anything except white spaces; also I believe 300 is too much, 30 should suffice.
Topic: Who knows a regular expression for this "garbage"?
Poster: Stepan Konev
Post title: Regex
[quote]Hans Lenting wrote:
Of course the regular expression isn't completely valid, since the segments contain non-letter characters too, but it is fine enough.[/quote]You can use \S{30,} instead. \S = anything except white spaces; also I believe 300 is too much, 30 should suffice.