python string implementation code example
Example 1: 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
Example 2: 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"