「String型のメソッド」の版間の差分
編集の要約なし |
|||
65行目: | 65行目: | ||
現在の文字列の中で、<code>oldValue</code>の出現する箇所をすべて<code>newValue</code>に置き換えます。 | 現在の文字列の中で、<code>oldValue</code>の出現する箇所をすべて<code>newValue</code>に置き換えます。 | ||
=string.Split= | =string.Split= | ||
array string.Split(); | |||
現在の文字列を単一文字ごとの文字列に分割します。 | |||
array string.Split(string separator); | array string.Split(string separator); | ||
現在の文字列を指定された区切り文字で分割します。 | 現在の文字列を指定された区切り文字で分割します。 | ||
=string.ToLower= | =string.ToLower= | ||
string string.ToLower(); | string string.ToLower(); |