Home

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

search_with_regular_expressions
 

This is an old revision of the document!


Users can filter the task list by name using regular expressions.

  • 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, but contains key2
    ^(?!.*key1)(?=.*key2)
 
search_with_regular_expressions.1668075923.txt.gz · Last modified: 2022/11/10 10:25 by wxhere
Recent changes RSS feed Driven by DokuWiki