Originally posted by Jeff Wisard:
Hello,
My findByCriteria method is described in the documentation as (from the javadoc of DBAccess):
Since the string comparison can be done very easily with the String.startsWith method, is there any advantage to using regular expressions here? It seems like that might be overkill...
Thanks!
theres pretty much no advantage if you plan to read a single value, then compare, and then move to the next value, and so on until you're done with the file.
but if you plan to have regex run through the file at once it comes at a price, unfortunately its not as cheap as calling startsWith, theres a bit of work involved, I cant tell you performance wise yet, because mainly thats currently whats holding me up right now, amongst some little things, I'm keen to know the difference in performance between reading the entire file and matching that, and a simple startsWith, and yes I'm well aware performance is not an issue on this assignment, I'm just interested.