General Tools @ Ilovewebtoolz 💖!

Transpose String Online

Transpose strings in various programming languages

Transpose String
What is Transpose String?

This tool transposes the characters of a string, essentially swapping rows and columns if the string is visualized as a grid. It's useful for various text manipulation tasks and coding challenges.

Functions

  • Transposes characters in a string
  • Handles strings with different line lengths
  • Provides code samples in multiple programming languages
Sample 1

Input:

hello
world

Output:

hw
eo
lr
ll
od
Sample 2

Input:

abc
def
ghi

Output:

adg
beh
cfi
Sample 3

Input:

123
456
789

Output:

147
258
369