QB64 Phoenix Edition
IDE search option - Printable Version

+- QB64 Phoenix Edition (https://qb64phoenix.com/forum)
+-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1)
+--- Forum: Code and Stuff (https://qb64phoenix.com/forum/forumdisplay.php?fid=3)
+---- Forum: Help Me! (https://qb64phoenix.com/forum/forumdisplay.php?fid=10)
+---- Thread: IDE search option (/showthread.php?tid=2747)



IDE search option - eoredson - 05-29-2024

Hi,

In the IDE you have Alt-S to search and F to find a string or value in your program..

My question is:

Could you have a checkbox for wildcard characters * and ? with the search specifications?

  [  ] Allow wildcard

Thanks, Erik.


RE: IDE search option - hsiangch_ong - 05-29-2024

Quote:findstr {/b} {/e} {/l | /r} {/s} {/i} {/x} {/v} {/n} {/m} {/o} {/p} {/f:<File>} {/c:<String>} {/g:<File>} {/d:<DirList>} {/a:<ColorAttribute>} {/off{line}} <Strings> {<Drive>:}{<Path>}<FileName>{ ...}

i had to look this up for windows. of course on linux there is grep.

i could not find page of qb64wiki to explain that windows terminal program.

do not think the qb64 ide could do everything for you. not everybody else wants filename wildcard for search, it is too harmful. going into regular expressions could cause frustration. especially asterisk is not for someone who wants precise match of something.

from above terminal command, you could note the line number and then do this:

Quote:qb64pe.exe -l:xxx filename.bas

xxx is the line number, and you should choose your program file.