Answers for "python string implementation"

8

reverse string method python

#linear

def reverse(s): 
  str = "" 
  for i in s: 
    str = i + str
  return str

#splicing
'hello world'[::-1]

#reversed & join
def reverse(string): 
    string = "".join(reversed(string)) 
    return string
Posted by: Guest on January-12-2020
0

string method example in java

public String trim()

String x = " hi ";
System.out.println( x + "x" ); // result is" hi x"
System.out.println(x.trim() + "x"); // result is "hix"
Posted by: Guest on January-25-2020

Code answers related to "python string implementation"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language