C#: Create a new string taking the first 3 characters of a given string and return the string with the 3 characters added at both the front and back
First Three Characters Front and Back
Write a C# Sharp program to create a string taking the first 3 characters of a given string. Return the string with the 3 characters added at both the front and back. If the given string length is less than 3, use whatever characters are there.
Visual Presentation:

Sample Solution:
C# Sharp Code:
Sample Output:
PytPythonPyt JSJSJS CodCodeCod
Flowchart:

For more Practice: Solve these Related Problems:
- Write a C# program to create a new string by taking the last 3 characters and adding them at both front and back.
- Write a C# program to surround a string with its first 3 and last 3 characters alternately.
- Write a C# program to generate a new string that repeats the first 2 characters at the front and first 3 characters at the back.
- Write a C# program to insert the first three characters of a string after every third character in the string.
Go to:
PREV : Multiple of 3 or 7.
NEXT : Starts with 'C#'.
C# Sharp Code Editor:
Improve this sample solution and post your code through Disqus
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.