brute force

  • Thread starter Thread starter didgerman
  • Start date Start date
D

didgerman

Chaps,
I'm looking for a brute force string search. I'd like to use it on a
form and out the result of each 'pass' into a text box line.
Cheers
 
didgerman said:
Chaps,
I'm looking for a brute force string search. I'd like to use it on a
form and out the result of each 'pass' into a text box line.
Cheers

Use a regular expression and collect the matches of that expression and
enlist the matches in the textbox.

FB
 
Frans Bouma said:
Use a regular expression and collect the matches of that expression and
enlist the matches in the textbox.

FB

Ok, thanks.
Anyone else used brute force?
 
didgerman said:
Ok, thanks.
Anyone else used brute force?

Brute force is the worst thing you could use. Think about the time you would
spend to look over the whole solutions' space.
 
Mathieu Chavoutier said:
Brute force is the worst thing you could use. Think about the time you would
spend to look over the whole solutions' space.

Yeah, you're right, but the 'n' value will always be small, so it
hardly seems worth using anything else.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top