Answers for "string methods ja"

1

String Methods

The lower() method simply converts all uppercase letters in a string to 
lowercase letters and returns it. For example:

str1 = "AbCdEfG"
lower_str = str1.lower()
print(lower_str )       # will print "abcdefg" to the terminal

The replace() method takes two arguments, the first is the thing you want to replace, 
and the second is the thing you want to replace it with. These two arguments are 
separated with a comma.
 
For example, if you wanted to replace all full stops in a string with exclamation marks:

str = "Hi. Nice to meet you." 
new_str = str.replace(".", "!")
print(new_str)           # would print "Hi! Nice to meet you!"

The split() method breaks up a string and turns it into a list. 
If you don't pass the split method any arguments, it will split a string at its spaces. 
For example:

str = "What do you think?
"new_str = str.split()
print(new_str)           # would print ['What', 'do', 'you', 'think?']

Or you can pass the split() method a string value to split it up at. 
For example, this code uses the repeated "and" to break up the string into a list.

str = "Oranges and apples and bananas"
fruit_list = str.split("and")
print(fruit_list)        # would print ['Oranges ', ' apples ', ' bananas ']
Posted by: Guest on May-20-2022
1

string methods in java

1	char charAt(int index)	returns char value for the particular index
	2	int length()	returns string length
	3	static String format(String format, Object... args)	returns a formatted string.
	4	static String format(Locale l, String format, Object... args)	returns formatted string with given locale.
	5	String substring(int beginIndex)	returns substring for given begin index.
	6	String substring(int beginIndex, int endIndex)	returns substring for given begin index and end index.
	7	boolean contains(CharSequence s)	returns true or false after matching the sequence of char value.
	8	static String join(CharSequence delimiter, CharSequence... elements)	returns a joined string.
	9	static String join(CharSequence delimiter, Iterable<? extends CharSequence> elements)	returns a joined string.
	10	boolean equals(Object another)	checks the equality of string with the given object.
	11	boolean isEmpty()	checks if string is empty.
	12	String concat(String str)	concatenates the specified string.
	13	String replace(char old, char new)	replaces all occurrences of the specified char value.
	14	String replace(CharSequence old, CharSequence new)	replaces all occurrences of the specified CharSequence.
	15	static String equalsIgnoreCase(String another)	compares another string. It doesn't check case.
	16	String[] split(String regex)	returns a split string matching regex.
	17	String[] split(String regex, int limit)	returns a split string matching regex and limit.
	18	String intern()	returns an interned string.
	19	int indexOf(int ch)	returns the specified char value index.
	20	int indexOf(int ch, int fromIndex)	returns the specified char value index starting with given index.
	21	int indexOf(String substring)	returns the specified substring index.
	22	int indexOf(String substring, int fromIndex)	returns the specified substring index starting with given index.
	23	String toLowerCase()	returns a string in lowercase.
	24	String toLowerCase(Locale l)	returns a string in lowercase using specified locale.
	25	String toUpperCase()	returns a string in uppercase.
	26	String toUpperCase(Locale l)	returns a string in uppercase using specified locale.
	27	String trim()	removes beginning and ending spaces of this string.
	28	static String valueOf(int value)	converts given type into string. It is an overloaded method.
Posted by: Guest on March-22-2022

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language