String burns = "My love is like a red, red rose.";
. . . . . .
if ( burns.toLower().startsWith( " MY LOVE".trim().toLower() ) )
System.out.println( "Both start with the same letters." );
else
System.out.println( "Prefix fails." );
What does the above write to the monitor?
Both start with the same letters.
That was a complicated question. I hope you rose to the occasion. If you got it wrong, review the previous example. You may wish to review the following.
trim()
method.
startsWith()
method.
Back to the main menu.