String Manipulator Help

Overview

This app can manipulate a string to a different format.


Instruction

1. Enter the string you want to manipulate into the textbox.
2. Choose one of the following options:

ActionExplanationSample InputSample Output
Caesar Shift +1 Convert each letter to the next letter in the alphabet. (only work on alphabet letters) ABCDEFGHIJKLMNOPQRSTUVWXYZ BCDEFGHIJKLMNOPQRSTUVWXYZA
Caesar Shift -1 Convert each letter to the previous letter in the alphabet. (only work on alphabet letters) ABCDEFGHIJKLMNOPQRSTUVWXYZ ZABCDEFGHIJKLMNOPQRSTUVWXY
Convert to lowercase Convert all letters to lowercase How are you? how are you?
Convert to uppercase Convert all letters to uppercase How are you? HOW ARE YOU?
Capitalize first letter of every word Change the first letter of every word to uppercase How are you? How Are You?
Capitalize a title or a headline Capitalize a title or a headline how to cook fish? How to Cook Fish?
Reverse a string Reverse the order the letters; display from right to left. How are you? ?uoy era woH
Replace commas to new line Replace all commas by new line. one, two, three one
two
three
Change to string set(by commas) Convert a string to a set of string elements. The elements from the original string should be separated by commas. car,bicycle,train,airplane,boat {"car","bicycle","train","airplane","boat"}
Change to string set(by commas;trim whitespaces) Convert a string to a set of string elements and then trim whitespaces from both ends of each element. The elements from the original string should be separated by commas. car , bicycle , train , airplane , boat {"car","bicycle","train","airplane","boat"}
Change from line separation to comma separation (remove empty line) Convert line by line strings to strings that are separated by comma. car
bicycle
train
airplane
boat
car,bicycle,train,airplane,boat
Concatenate multi-line to single-line Concatenate multi-line text to single line text. How
are
you?
Howareyou?
Concatenate multi-line to single-line (add space) Concatenate multi-line text to single line text. A space is added at each line break position. How
are
you?
How are you?
Reverse line orders Reverse the line orders so that the last line is on top and the first line is at the bottom. A
B
C
D
E
E
D
C
B
A
Sort line by line in ascending order Sort line by line in ascending order (case sensitive) C
A
B
A
B
C
Sort line by line in descending order Sort line by line in descending order (case sensitive) C
A
B
C
B
A

Disclaimer: All the programs on this website are designed for educational purposes only. They are tested however mistakes and errors may still exist. By using these programs, you acknowledge that you are aware that the results from the programs may contain mistakes and errors and you are responsible for using these results. The author is not responsible for errors and results from these programs.