Huge Collections of Software Manuals and Knowledgebase

GreatManuals.com
Huge Collections of Software Manuals and Knowledgebase

 
Home Contact Us Request to publish your help manuals Request to remove your help manuals
User's Guide
» WeBuilder 2008
» Key Features
Working with Files
» Working with Files
» Create New File & HTML Document
» Create PHP Script & CSS Style Sheet
» Open Files
» Save & Publish File
» Linked Files Window
» File Explorer
Working with Projects
» Working with Projects
» Create New Project
» Select & Manage Existing Projects
» Publish Project to FTP
» Project Properties Window
» Publish Project Window
Searching & Navigating Text
» Search Text
» Find & Replace
» Using Regular Expressions
» Using Bookmarks
» Using Search Toolbar
» Go to Next or Previous Bracket
Editing...
» Editing Text
» Editing HTML and XHTML
» Editing Style Sheets
» Editing PHP Code
» Editing JavaScript Code
» Editing Scripts
» Code Editing Tools
Previewing...
» Preview HTML Document or PHP Pages
» Configuring PHP Preview
» Preview Style Sheets or Server Side Scripts
» Preview in Web Browser or Document Window
» Internal Preview
» Using Preview Toolbar
» Configure Web Browsers
Reusing Code
» Reusing Code
» Templates
» Library
» Code Templates
» Code Preprocessor
Customizing WebBuilder
» Customize Keyboard Shortcuts
» Change Interface Style
» Text Editor
» Toolbars & Panels
» Development Language Options
 

Using Regular Expressions

Find and Replace features support regular expressions, enabling you to find or replace strings based on patterns.

deleted picture recovery best data recovery software send group sms
recover data from sd card usb drive data recovery software files recovery usb drive
capture keystrokes recover password memory card recovery

Regular expression operators

^ A circumflex at the start of the string matches the start of a line.
$ A dollar sign at the end of the expression matches the end of a line.
. A period matches any character.
* An asterisk after a string matches none or any number of occurrences of that string.
+ A plus sign after a string matches one or more occurrences of that string.
[ ] Characters in brackets match any one character that appears in the brackets, but no others.
[^] A circumflex at the start of the string in brackets means NOT.
[-] A hyphen within the brackets signifies a range of characters. For example, [a-z] matches any character from a through z.
( ) Braces group characters or expressions.

Examples

ab+ Matches ab, abb, abbb ...
ab* Matches a, ab, abb ...
a(bc)+ Matches abc, abcbc ...
<img[^>]+> Matches HTML image tags e.g. <img src="image.gif">
[a-z0-9]+ Matches any alphanumeric word e.g. abc, 123, abc123 ...

Escaping operators

In order to search for literal instances of characters that denotes regular expression operators, you must escape them with a \ . For example, \^ matches ^ and does not look for the start of a line.

Home | Contact Us | Request to publish your help manuals | Request to remove your help manuals