Skip to content

WIET2018-TO2-JJJ/WebCrawler

Repository files navigation

WebCrawler

The desktop application used for searching specified websites based on made query.

Query Language

Rule Description
* Non-greedy wildcard
<N> Match N words
word Match specific word
(rule1 | rule2) Match rule1 or rule2

Examples

Sentence with 1 or 3 words

(<1> | <3>)

Sentence starting with at least 3 words.

* <3>

Sentence containing 2 specific words in any order and at any position in sentence

* (home | rome | dome) * (home | rome | dome) *

will match against

My home in Rome has dome.
Rome has home with best dome.

Other

<2> root <3>

will match against

Money is root of all evil.

=======

Query language

* - anything
text - search for word 'text' : Letter case sensitive
<N> - match N words
| - logical OR
() - brackets

Example: <5> (word1 | word2) means match any five words and then must be word1 OR word2

License

Icons made by Freepik from Flaticon is licensed by Creative Commons BY 3.0

About

Desktop application for searching websites

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published