Wiki » History » Revision 2
Revision 1 (iri, 02/23/2011 08:22 PM) → Revision 2/4 (iri, 02/24/2011 12:18 AM)
h1. PCRE : Perl Compatible Regular Expression
This library is in development yet. It's a beta version, so, be carefull !
It is under "GNU / LGPL":http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html 2.1 license
Syntax and semantics of the regular expressions supported by this library :
http://library.gnome.org/devel/glib/unstable/glib-regex-syntax.html
Warning : all may not be implemented yet !
h2. Installation
# Stop any Scol instance.
# Copy the dll file (MS Window) or so file (GNU / Linux) to your scol plugins subfolder.
# In the Scol root directory, edit the _usm.ini_ file and add this line :
@plugin plugins/pcre.dll SCOLloadPCRE SCOLfreePCRE@
# Launch Scol
h2. Uninstallion
# Stop any Scol instance.
# Remove the dll file (MS Window) or so file (GNU / Linux) to your scol plugins subfolder.
# In the Scol root directory, edit the _usm.ini_ file and remove (or comment with #) this line :
@plugin plugins/pcre.dll SCOLloadPCRE SCOLfreePCRE@
# Launch Scol
h2. If the library is not loaded ...
* GLib 2 must be installed in your system.
** *On MS Windows :*
If not, you can download it from http://www.gtk.org/download-windows.html :
- - GTK+ individual packages
- - - GLib
- - - - Run-time
Only _libglib-2.0-0.dll_ (or +) is needed to pcre library.
Copy it to your windows/system32 subfolder (recommended) or to your Scol root folder.
** *On GNU/ Linux :*
Upgrade your system to get the version 2.0
* Verify the line in the usm.ini file
The syntax must be exact and there is not \tab, only \space.
If you are a developer, you could be interested by the [[API]] ...