文字列操作に関するユーティリティメソッドを提供するクラスです。
このクラスは静的クラスです。 インスタンスを作成することは出来ません。
Namespace: Smdn.Utils
Assembly: Smdn.Utils (in Smdn.Utils.dll)
Assembly Versions: 1.0.0.0
See Also: Inherited members from object.
⊟ Public Methods
staticReverse (string) : string 文字列の並びを逆転した結果を返します。 staticSplitBySpace (string) : string[] 文字列を全角および半角の空白で区切った結果をSystem.Stringの配列で返します。
⊟ Reverse Method
文字列の並びを逆転した結果を返します。
⊟ Parameters
- str
- 並びを逆転するSystem.Stringを指定します。
⊟ Returns
並びを逆転したSystem.Stringを返します。⊟ Exceptions
Type Reason ArgumentNullException strがnullの場合にスローされます。 ⊟ Remarks
strの長さが0の場合、長さ0のSystem.Stringを返します。⊟ Example
次のコードでは、変数fooに文字列"oof"が代入されます。
Example string foo = StringUtils.Reverse("foo");⊟ Requirements
Namespace: Smdn.Utils
Assembly: Smdn.Utils (in Smdn.Utils.dll)
Assembly Versions: 1.0.0.0
⊟ SplitBySpace Method
文字列を全角および半角の空白で区切った結果をSystem.Stringの配列で返します。
⊟ Parameters
- str
- 分割するSystem.Stringを指定します。
⊟ Returns
文字列を全角および半角の空白で区切ったSystem.Stringの配列を返します。⊟ Exceptions
Type Reason ArgumentNullException strがnullの場合にスローされます。 ⊟ Remarks
strの長さが0の場合、長さ0のSystem.String配列を返します。⊟ Requirements
Namespace: Smdn.Utils
Assembly: Smdn.Utils (in Smdn.Utils.dll)
Assembly Versions: 1.0.0.0