detect comments
Finds the end of a C/C++ comment, if it exists at the current location within a string
Controller: CodeCogs
Interface
C++
Excel
Detect Comments
intdetect_comments( | const char* | str | |
int | offset | ||
int | str_len | ) |
- "/*" is known as a block comment and end always with a "*/". If comments are nested, this function will find the closing "*\/" that corresponds to the initial bracket, skipping over intermediate comments.
- "//" is known as a single line comment. The end is merely the end of the line.
Parameters
str This is the input string, with text that needs analysing. offset The location within str to search for the start of a comment. If no comment is found at str[offset] then offset is returned. str_len The length of the str to search. If you are unsure use strlen(str).
Source Code
Source code is available when you agree to a GP Licence or buy a Commercial Licence.
Not a member, then Register with CodeCogs. Already a Member, then Login.