Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hello, I am trying to search for a block of text that begins with "/*something". How can I match this with regex in Qt Creator? Thanks Vaclav
@mravenca In the title you want to match whitespaces, in the description you want to match /*something - so, what do you really want to match?
\s matches whitespaces.
@mravenca said in How to match whitespaces in regex search:
begins with "/*something".
^/\*something
or maybe
^\s*/\*\s*something
If you don't care about regular expression you could switch that off and just search for /*something :)
/*something