Home

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

search_with_regular_expressions
 

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 contains NEITHER key1 NOR key2
    ^(?!.*(key1|key2))
  • name does NOT contain key1, but contains key2
    ^(?!.*key1)(?=.*key2)
 
search_with_regular_expressions.txt · Last modified: 2022/11/14 07:19 by wxhere
[unknown button type]
 
Recent changes RSS feed Driven by DokuWiki