@mythricn5614

Very good explanation

@bibekbhattarai1416

String s="A random String to Reverse";
		StringBuilder sb= new StringBuilder(s);
		System.out.println(sb
.reverse());
this can be one without lyamda and strreams just create a object of String builder and pass the string and call .reverse()

@sreehaanshnav

Can u please code for to swap first and last  character of the string

@doubly_negative

In my experience, the interviewer will always ask you to not use in built methods. Otherwise things become too easy

@itspk001

Hi Can you make program for this
// How to Reverse String without change the place of Special Characters using java 8?
		String str1 = "Ab#cdefg@i";
		// String output = "ig#fedcb@A";

@Mig440

Please... why not use something else than java 8? Like atleast 17 😮