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 burned, review the example. You may wish to review the following.
String
class
description.
String
concatenation.
trim()
method.
startsWith()
method.