String Functions
Exercise 1
- Create a function which takes string and a character as arguments and return a string by removing similar
characters from string.
Exercise 2
- Create a function which takes string as argument and return the count
of Blank Space in a string.
Exercise 3
- Create a function which takes 2 strings as an argument and return
joined string as example.
Exercise 4
- Create a function which takes string as argument and return the all the small "a" to Capital "A".
Exercise 5
- Create a functions which takes String as argument return string by removing last character.
Exercise 6
- Create a functions which takes an String (includes numbers) and extract a numbers from a string.
Exercise 7
- Create a functions which takes String as argument return new string with all characters in upper case.
Exercise 8
- Create a functions which take 2 String numbers and return a sum of them in
number datatype.
Exercise 9
- Create a functions which takes String and a character as arguments return
boolean value if String has that character at start.
Exercise 10
- Create a functions which take String and Character return the position of
Character from string.