Search Inscriptions
Search for any inscription class in the database, like sigilla, tituli picti, tituli ante cocturam, tituli post cocturam.
By default, the search is performed with the REGEX patterns, but you can also do it with the SQL patterns matching.
'^co'
string that begin with a particular substring.'er$'
string that end with a particular substring.'er'
strings that contain a particular substring at any position.'^..pp'
strings that contain a particular substring at a specific position.
_
matches any single character, and %
matches any sequence of characters, including the empty string.
You can use these characters to create patterns that match a wide variety of values.
'co%'
string that begin with a particular substring.'%er'
string that end with a particular substring.'%er%'
strings that contain a particular substring anywhere.'abc'
matches successfully only if it matches the entire comparison value.'_pp%'
string that contain a substring at a specific position (the pattern matches only if pp occurs at the second position).
Results
Loading...