Full featured web-based Bible study tool. Provides many up-to-date Bible versions including original hebrew and greek texts. It provides fulltext search, dictionaries and lexikons, comments and notes. User interface localized to many languages.
Case
Searches are case insensitive.
Symbols
te?t - Single character wildcard (matches text or test).
test* - Multiple character wildcard (matches test, tests or tester).
Note: You cannot use a * or ? symbol as the first character of a search.
Phrase is a group of words surrounded by double quotes such as "hello dolly".
roam~ - Fuzzy search for a term similar in spelling (finds terms like foam and roams).
Note: You can specify level of required similarity 0-1, default is 0.5. (roam~0.8).
"jakarta apache"~10 - Find words being within a specific distance away. (10 words away)
jakarta^4 apache - Boost factor (0-100, default is 1), importance of the term in a search.
Logical Operators
AND (&&) - Matches verses where both terms exist anywhere in a single verse.
OR (||) - Matches verses where at least one of the terms exist in a single verse. This is the default operator if none is specified.
NOT (!, -) - Excludes verses that contain the term after NOT.
+ - Term after + must be present in a verse to match.
(jakarta OR apache) AND website - Example of grouping using perenthesis.
Escaping Special Characters
Special characters are:
+ - && || ! ( ) { } [ ] ^ " ~ * ? : \
To escape these characters use the \ before such character.