can you paste the patterns here? The screenshot resolution is too small to
completely recognize all characters.
But at least I can already see that you pasted the same values into INPUT
and OUTPUT? That's wrong. OUTPUT should be something like "\1".
Check out the regex pattern examples in the help text, or directly look
at the ones for the "ASM" or "INI" languages.
Also it uses "gnu regex", which doesn't know "*". You need to use
something like "[]*" instead.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello!
I'm another orphan of FunctionList plugin, and I've found this plugin a very good alternative.
I'm trying to bring the regex patterns I've used on FunctionList to Sourcecookifier.
For example, I'm trying to find the PROC <statement> combination inside my code, like this: PROC Pieza_62(), as showed in the screenshot below:
This regex pattern works fine in the INPUT field, but doesn't in the OUTPUT field. Is there something I'm missing?
http://imageshack.us/f/215/capturadetelaxj.png
Hi,
can you paste the patterns here? The screenshot resolution is too small to
completely recognize all characters.
But at least I can already see that you pasted the same values into INPUT
and OUTPUT? That's wrong. OUTPUT should be something like "\1".
Check out the regex pattern examples in the help text, or directly look
at the ones for the "ASM" or "INI" languages.
Also it uses "gnu regex", which doesn't know "*". You need to use
something like "[]*" instead.
Hi, ufo-pu55y
The regex pattern is this:
And, yes, I put the same pattern on INPUT and OUTPUT.
I'll look for this examples of gnu regex.
Thanks!
Then try like this:
Input: PROC[]+([_]*)
Output: \1
It worked!
I've changed the regex a little bit, because the code have some ENDPROC statements which I don't wanna see in Sourcecookifier list:
Thanks!