User Guide : Using Content Extraction Language : Language Syntax and Examples : # comment
 
Share this page                  
# comment
Except when used in a regular expression, anything from # (pound sign) to the end of the line is considered a comment, and is ignored. If the pound sign ( # ) is within forward slashes ( /#/ ), then the regular expression will match a literal #.
Example
# Comments can appear on a line by themselves or to the right of statements
Example
varlen = length($3);
# Every line in a script can contain a comment if useful