Swift String Exercises: Create a new string made of the first and last n chars from a given string
Swift String Programming: Exercise-14 with Solution
Write a Swift program to create a new string made of the first and last n chars from a given string. The string length will be at least n.
Pictorial Presentation:
Sample Solution:
Swift Code:
func twice_n_char(_ input: String, _ n: Int) -> String {
let part1 = String(input.characters.prefix(n))
let part2 = String(input.characters.suffix(n))
return part1 + part2
}
print(twice_n_char("Python", 2))
print(twice_n_char("Swift Examples", 3))
print(twice_n_char("Swift Examples", 1))
Sample Output:
Pyon Swiles Ss
Swift Programming Code Editor:
Improve this sample solution and post your code through Disqus
Previous: Write a Swift program to test if a given string starts with "ab".
Next: Write a Swift program to create a new string of length three from a given string of odd length from its middle. The string length must be three.
What is the difficulty level of this exercise?
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/swift-programming-exercises/string/swift-string-exercise-14.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics