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.
 
Back
Top