Home

A free C++ BitTorrent/HTTP/FTP Download Client

search_with_regular_expressions
 

This is an old revision of the document!


Search tasks or torrents with regular expressions

Users can filter the task list and torrent list by name using regular expressions. Examples:

  • name contains key
    key
  • name contains key1 OR key2
    key1|key2
  • name contains key1 AND key2
    (?=.*key1)(?=.*key2)
  • name does NOT contain key
    ^(?!.*key)
  • name does NOT contain key1 or key2
    ^(?!.*(key1|key2))
  • name does NOT contain key1, but contains key2
    ^(?!.*key1)(?=.*key2)
 
search_with_regular_expressions.1668410188.txt.gz · Last modified: 2022/11/14 07:16 by wxhere
Recent changes RSS feed Driven by DokuWiki