Instructions
143 C-Control Pro IDE
© 2013 Conrad Electronic
Ctrl + K + B
Marks the beginning of a block
Ctrl + K + K
Marks the end of a block
Esc
Reset selection
Ctrl + digit (0-9)
Go to Bookmark digit (0-9)
Shift + Ctrl + (0-9)
Set Bookmark digit (0-9)
Ctrl + Space
Auto completion popup
3.2.4 Regular Expressions
The search function in the editor supports Regular Expressions. With this function character chains
can highly flexible be searched for and replaced.
^
A Circumflex at the beginning of the word finds the word at the beginning of a
line
$
A Dollar Sign represents the end of a line
.
A Dot symbolizes an arbitrary character
*
A Star stands for the repeated appearance of a pattern. The number of repeti-
tions may also be Zero
+
A Plus stands for the multiple or at least solitary appearance of a pattern
[ ]
Characters in square brackets represent the appearance of one of the characters
[^]
A Circumflex in square brackets negates the selection
[-]
A Minus in square brackets symbolizes a character range
{ }
Tailed braces will group separate expressions. Up to ten levels may be nested
\
A Back Slash will take the special meaning from the following character
Examples
Example
will find
^void
the word "void" only at the beginning of a line
;$
the Semicolon only at the end of a line
^void$
Only "void" may stand in this line
vo.*d
e. g. "vod","void","vqqd"
vo.+d
e. g. "void","vqqd" but not "vod"
[qs]
the letters 'q' or 's'
[qs]port
"qport" or "sport"
[^qs]
all letters other than 'q' or 's'
[a-g]
all letters from 'a' through 'g' (including)
{tg}+
e. g. "tg", "tgtg", "tgtgtg" asf.
\$
'$'