Smdn.Utils : Smdn.Utils Namespace

StringUtils Class

文字列操作に関するユーティリティメソッドを提供するクラスです。

public static class StringUtils

Remarks

このクラスは静的クラスです。 インスタンスを作成することは出来ません。

Requirements

Namespace: Smdn.Utils
Assembly: Smdn.Utils (in Smdn.Utils.dll)
Assembly Versions: 1.0.0.0

Members

See Also: Inherited members from object.

Public Methods

static
Reverse (string) : string
文字列の並びを逆転した結果を返します。
static
SplitBySpace (string) : string[]
文字列を全角および半角の空白で区切った結果をSystem.Stringの配列で返します。

Member Details

Reverse Method

文字列の並びを逆転した結果を返します。

public static string Reverse (string str)

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の配列で返します。

public static string[] SplitBySpace (string str)

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