how to find reverse of string without string funtion of
java.

Answers were Sorted based on User's Feedback



how to find reverse of string without string funtion of java...

Answer / balumahendran.m(pavartha chenn

public class Pract {

public static void main(String args[]){

System.out.println(reverse("nnnnn ooooooooooooo nnnnnnnnnnnn mmmmmmmmmmmmm"));
}

public static String reverse(String str) {
if ((str == null) || (str.length() <= 1)) {
return str;
}
return reverse(str.substring(1)) + str.charAt(0);
}

}

Is This Answer Correct ?    6 Yes 0 No

how to find reverse of string without string funtion of java...

Answer / bokhtiar mehedy farsim

public class StringReverse {

public String reverse(String str) {
if ((str == null) || (str.length() <= 1)) {
return str;
}
return reverse(str.substring(1)) +
str.charAt(0);
}

public static void main(String args[]){
StringReverse ob=new StringReverse();
System.out.println(ob.reverse("Hello"));
}
}

Is This Answer Correct ?    3 Yes 5 No

Post New Answer

More J2EE Code Interview Questions

exception org.apache.jasper.JasperException: java.lang.NullPointerException org.apache.jasper.servlet.JspServletWrapper.handleJs pException(JspServletWrapper.java:491) org.apache.jasper.servlet.JspServletWrapper.service( JspServletWrapper.java:419) org.apache.jasper.servlet.JspServlet.serviceJspFile( JspServlet.java:313) org.apache.jasper.servlet.JspServlet.service(JspServ let.java:260) javax.servlet.http.HttpServlet.service(HttpServlet.j ava:717) root cause java.lang.NullPointerException org.apache.struts.taglib.TagUtils.retrieveMessageRes ources(TagUtils.java:1175) org.apache.struts.taglib.TagUtils.message(TagUtils.j ava:1038) org.apache.struts.taglib.bean.MessageTag.doStartTag( MessageTag.java:224) org.apache.jsp.register_jsp._jspx_meth_bean_005fmess age_005f0(register_jsp.java:138) org.apache.jsp.register_jsp._jspService(register_jsp .java:94) org.apache.jasper.runtime.HttpJspBase.service(HttpJs pBase.java:70) javax.servlet.http.HttpServlet.service(HttpServlet.j ava:717) org.apache.jasper.servlet.JspServletWrapper.service( JspServletWrapper.java:377) org.apache.jasper.servlet.JspServlet.serviceJspFile( JspServlet.java:313) org.apache.jasper.servlet.JspServlet.service(JspServ let.java:260) javax.servlet.http.HttpServlet.service(HttpServlet.j ava:717)

0 Answers  


Can we change the validator-rules.xml for our own validations in struts??

0 Answers   Mastek,


Do you think about CMM(Capability Maturity Model) process?

0 Answers   Amazon,


Write Down Steps Using SAX Parser

1 Answers   IBM,


Can you forward data from a servlet to a regular .java class that is not a servlet?

3 Answers  






how to find reverse of string without string funtion of java.

2 Answers  


Write Down Steps Using SAX Parser

0 Answers  


code inside filter to restrict users to access a servlet component .

1 Answers   NIIT,


How to get one hasmap value in another hashmap ,only value not key

0 Answers   CTS,


Where can i find some sample applications for different J2EE frameworks like Spring,Struts ,JSF, Hibernate etc ??

0 Answers  


How to read MS-word document in java without displaying junk (unnecessary) data?

5 Answers   Cognizant,


How to convert string containing decimal point into integer in java? For example given a string like "3.14" as input how to get integer 3 as result.

7 Answers  


Categories