テキストの文字を指定された位置数だけ左または右に移動します — カスタマイズ可能な回転パラメータを使用してテキストを循環させます
円形回転は、文字レベルで動作するシーザー暗号の基本形態です。テキスト文字列を円形バッファとして扱います。文字がシーケンスの先頭または末尾を超えてシフトされると、反対側に回り込むことになります。当ツールは、このルールに正確かつ柔軟に従います。例えば、英語のアルファベットで文字 'Z' を右に1つシフトすると、それは 'A' になります。この論理は、選択した設定に基づいて適格なすべての文字に適用されます。
Input: "Hello." Rotate: Shift right by 1 position | Preserve Whitespace and Punctuation: OFF Output: ".Hello" Explanation: Every character (including the period) moves one position to the right. The last character "." wraps around to the front.
Input: "Test Message." Rotate: Shift left by 3 positions | Preserve Whitespace and Punctuation: ON Output: "tMes sageTes." Explanation: Only letters and digits rotate left. Spaces and the period stay fixed in place while alphanumeric characters wrap around those fixed slots.
「各単語を個別に回転」オプションは、作業のロジックを大きく変更します。ツールはテキスト全体を1つの文字列として処理するのではなく、内容をスペースで区切って個々の単語に分割し、各単語を個別に回転させます。この機能は、単語パズルを作成したり、リストを混乱させながら各単語をそのまま保持するのに最適です。
Input: "Cyber Security" Rotation: Shift right by 2 positions | Rotate Each Word Independently: ON | Preserve Whitespace and Punctuation: OFF Output: "erCyb tySecuri" Explanation: With independent word rotation ON, "Cyber" becomes "erCyb" and "Security" becomes "tySecuri". Word order stays the same; only characters inside each word rotate.
このツールは、文字、数字、そしてさまざまな文字の組み合わせに対応しています。コードやIDを固定数だけ回転させることは、軽量な難読化として機能したり、シリアルのバリエーションを生成したりすることができます。この回転はアルファベット順ではなく、元の文字列内の文字の位置に基づいていることに注意してください。
Input: "ID-2024-789" Rotation: Shift right by 4 positions | Preserve Whitespace and Punctuation: ON Output: "47-89ID-202" Explanation: Letters and digits rotate right by 4 among themselves (I,D,2,0,2,4,7,8,9 → 4,7,8,9,I,D,2,0,2). Hyphens stay in their original positions as fixed separators.
ここでは、サーキュラーテキストローターに関するよくある質問、その機能や使い方にお答えします。必要な答えが見つからない場合は、例の機能を試して実際にその効果を確認してみてください。