how to implement such a requirement via regexp?
I have a list of filenames as String's.
LOAD_filesourceA-01012008-00001.dat
LOAD_filesourceB-01012008-00001.dat
LOAD_filesourceB-01012008-00003.dat
LOAD_filesourceA-01012008-00004.dat
LOAD_filesourceA-01012008-000055.dat
LOAD_filesourceB-01012008_000055.dat
...
LOAD_filesourceB-01012008_000058.dat
etc
after loading each file, that file gets moved ...
I want to check if the user's input in the server side.
If the user enters a number 111111 or 22222 which has the same numbers,
and also if the input is in ...
Hi, I have a requirement to validate a field. The field should be numeric, should not contain all the same digits (like 555555, 111111) and the length is 6 chars. I need a regular expression to check this. I used [1-9] to check if it's numeric. Now I need to know how can I check if it contains all same digits. ...