テキスト

大文字/小文字 io.db.string.children.case.children.isAlpha.title

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

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

無料オンラインio.db.string.children.case.children.isAlpha.titleコンバーター

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

変換方法

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

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

2. 変換プロセス

ツールが自動的に最適な設定でテキストを io.db.string.children.case.children.isAlpha.title 形式に変換します。

3. io.db.string.children.case.children.isAlpha.title をコピー

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

よくある質問

変換仕様

入力大文字/小文字
出力io.db.string.children.case.children.isAlpha.title
安全性HTTPS / 自動削除
価格
無料

コードの使用

isAlpha

Determines whether the given string consists exclusively of alphabetic characters (a-z, A-Z). Returns `false` for empty strings, strings containing digits, whitespace, special characters, or any non-alphabetic characters. The check is performed using a regular expression that matches one or more alphabetic characters spanning the entire string.

パラメータ

名前説明
textstringThe string to check.

戻り値

booleanTrue if the string is alphabetic.
npm i @razomy/string-case
import {isAlpha} from '@razomy/string-case';

isAlpha('Razomy');
// => true

isAlpha('R4zomy');
// => false

isAlpha('');
// => false