Home
C-Organizer Professional Online Help Prev Page Next Page
General information
About C-Organizer Pro
Features overview
Installation and system requirements
How to upgrade C-Organizer v3-6 to a new version
Interface types and colors
Multilanguage interface
Information about updates
Working with C-Organizer Pro
C-Organizer Pro overview
Portable mode
Today
Today - Overview
Calendar
Calendar - Overview
Calendar - Adding/Editing appointment
Calendar - Deleting appointments
Calendar - Reminder
Calendar - Print
Tasks
Tasks - Overview
Tasks - Adding/Editing task
Tasks - Deleting tasks
Tasks - Reminder
Tasks - Print
Contacts
Contacts - Overview
Contacts - Adding/Editing record
Contacts - using templates
Contacts - Deleting record
Contacts - Reminder
Contacts - Print
Phone Dialer
Passwords
Passwords - Overview
Passwords - Adding/Editing record
Passwords - Deleting record
Passwords - Print
Passwords Generator
Notes
Notes - Overview
Notes - Adding/Editing note
Notes - Deleting note
Notes - Print
Events
Events - Overview
Events - Adding/Editing event
Events - Deleting event
Events - Reminder
Events - Print
Deleted Items
Deleted Items - Overview
Favorites
How to preview a record and work with stickers
Working with Categories
Working with text and descriptions
Spell-checking
Working with Attachments
Manage attachments
Creating and editing print templates
Previewing and printing report
Alarm - additional options
Recurrence - advanced options
Program's options
Keyboard Shortcuts
General options
Additional options
Backup options
Notifications options
Text Editor options
Fonts options
Preferences
Calendar
Tasks
Contacts
Passwords
Notes
Events
Working with databases
Database Manager
Search in database
Synchronization with Google
Working with Dropbox
Working with Google Drive
Working with OneDrive
Import
Export
Backup
Restore
How to protect your information by password
Working in a network
Network features overview
Server installation
Connection to a server
Managing users
Assigning entries
Server database maintenance
Copyright and License
Copyright and License
Registration
How to order C-Organizer Professional
Limitations of evaluation version
Technical support
Technical support

 


  Search in database

C-Organizer has a powerful database search function. To find any text in the database entries, click the "File - Find" main menu item or use the Ctrl + F shortcut.

 

You will see a dialog box:

 

Find

 

Enter the text you wish to find and specify where to search in.

For your convenience, the C-Organizer "remembers" your last 10 search strings.

 

You can choose the additional options:

Whole words only - search only whole words, which match to search string.

Case sensitive - case sensitive search string.

Show Completed - this option is actual when you search within the Calendar and Tasks sections.

Filter by Category - if your entries are filtered by category, this option will be enabled. You can use or remove filter for search results.

User regular expressions - you can add a special symbols to search string.

 

Click the "Find" button. The search result will be displayed in the lower part of the dialog box.

We've added an ability to print search results. Just click the "Print" button and a printable report with a list of found records will be created.

 

About regular expressions in short:
 

Wildcards

The known wildcards _ and % match any single character and a string of any length, respectively:

 
'Birne' similar to 'B_rne' -- true

'Birne' similar to 'B_ne' -- false

'Birne' similar to 'B%ne' -- true

'Birne' similar to 'Bir%ne%' -- true

'Birne' similar to 'Birr%ne' -- false

 

Character Classes

A bunch of characters enclosed in brackets define a character class. A character in the string matches a class in the pattern if the character is a member of the class:

 

'Citroen' similar to 'Cit[arju]oen' -- true

'Citroen' similar to 'Ci[tr]oen' -- false

'Citroen' similar to 'Ci[tr][tr]oen' -- true

 

As can be seen from the second line, the class only matches a single character, not a sequence. Within a class definition, two characters connected by a hyphen define a range. A range comprises the two

endpoints and all the characters that lie between them in the active collation. Ranges can be placed anywhere in the class definition without special delimiters to keep them apart from the other elements.

 

'Datte' similar to 'Dat[q-u]e' -- true

'Datte' similar to 'Dat[abq-uy]e' -- true

'Datte' similar to 'Dat[bcg-km-pwz]e' -- false

 

Quantifiers

A question mark immediately following a character or class indicates that the preceding item may occur 0 or 1 times in order to match:

 

'Hallon' similar to 'Hal?on' -- false

'Hallon' similar to 'Hal?lon' -- true

'Hallon' similar to 'Halll?on' -- true

'Hallon' similar to 'Hallll?on' -- false

'Hallon' similar to 'Halx?lon' -- true

'Hallon' similar to 'H[a-c]?llon[x-z]?' -- true

 

An asterisk immediately following a character or class indicates that the preceding item may occur 0 or more

times in order to match:

 

'Icaque' similar to 'Ica*que' -- true

'Icaque' similar to 'Icar*que' -- true

'Icaque' similar to 'I[a-c]*que' -- true

'Icaque' similar to '_*' -- true

'Icaque' similar to '[[:ALPHA:]]*' -- true

'Icaque' similar to 'Ica[xyz]*e' -- false

 

A plus sign immediately following a character or class indicates that the preceding item must occur 1 or more times in order to match:

 

'Jujube' similar to 'Ju_+' -- true

'Jujube' similar to 'Ju+jube' -- true

'Jujube' similar to 'Jujuber+' -- false

'Jujube' similar to 'J[jux]+be' -- true

'Jujube' sililar to 'J[[:DIGIT:]]+ujube' -- false


Copyright © CSoftLab. All Rights Reserved.  

Converted from CHM to HTML with chm2web Standard 2.85 (unicode)