テキスト

大文字/小文字 Humanize

通常のテキスト、文字列、または変数をHumanizeに変換するための、無料で即座に使えるオンラインツールです。

入力テキスト
humanize の結果
100%安全
高速変換
高精度

無料オンラインHumanizeコンバーター

当社の文字列フォーマットツールは、通常のテキスト、文章、またはコード変数を即座にHumanizeに変換します。コンテンツを貼り付けるだけで、スペースや大文字小文字を自動的に処理します。

変換方法

1. 大文字/小文字 テキストを貼り付け

入力エリアに 大文字/小文字 の内容を貼り付けるか入力してください。

2. 変換プロセス

ツールが自動的に最適な設定でテキストを Humanize 形式に変換します。

3. Humanize をコピー

変換が完了しました。結果をクリップボードに直接コピーできます。

よくある質問

変換仕様

入力大文字/小文字
出力Humanize
安全性HTTPS / 自動削除
価格
無料

コードの使用

humanize

Transforms a string from common programming naming conventions (camelCase, snake_case, kebab-case) into a human-readable sentence. It splits words by detecting camelCase boundaries, underscores, and hyphens, normalizes whitespace, converts the result to lowercase, and capitalizes the first letter.

パラメータ

名前説明
textstringThe string to humanize.

戻り値

stringThe humanized string.
npm i @razomy/string-case
import {humanize} from '@razomy/string-case';

humanize('camelCase');
// => Camel case

humanize('snake_case_string');
// => Snake case string

humanize('kebab-case-string');
// => Kebab case string