Thread
:
Basic Password Verifier
View Single Post
•
•
Join Date: Aug 2008
Posts: 1,162
Reputation:
Solved Threads: 137
dickersonka
Offline
Veteran Poster
Re: Basic Password Verifier
0
#
2
Nov 18th, 2008
it needs to be changed to this format
Help with Code Tags
Java Syntax
(
Toggle Plain Text
)
if
(
userPass.
charAt
(
index
)
==
'c'
)
if (userPass.charAt(index) == 'c')
but you are making it hard, you can do this
Help with Code Tags
Java Syntax
(
Toggle Plain Text
)
if
(
userPass.
startsWith
(
"cool"
)
)
{
return
false
;
}
if(userPass.startsWith("cool")){ return false; }
Custom Application & Software Development
www.houseshark.net
dickersonka
View Public Profile
Visit dickersonka's homepage!
Find all posts by dickersonka