.net

【VB.NET】VB.NET関数一覧(文字列)

文字列操作で使用する、VB.NET関数の一覧をまとめました。

VB.NET関数一覧(文字列)

.NET関数内容
Concat文字列を連結する
Insert文字列を挿入する
Remove文字列を削除する
Replace文字列を置換する
Length文字列の長さを取得する
Equals文字列を比較する
Compare文字列を比較する(大文字小文字区別なし)
ToUpper文字列を大文字に変換する
ToLower文字列を小文字に変換する
Chars文字列から一文字を取り出す
Substring文字列の一部を取り出す
PadLeft指定の文字数になるまで先頭を文字で埋める
PadRight指定の文字数になるまで末尾を文字で埋める
StartsWith先頭の文字列と一致するかどうか判断する
EndsWith末尾の文字列と一致するかどうか判断する
Trim先頭または末尾にある空白の文字を削除する
TrimStart先頭にある指定の文字を削除する
TrimEnd末尾にある指定の文字を削除する
IndexOf先頭から文字を検索する
Split区切り文字で分割して配列に変換する
Join配列を結合して文字列にする
Empty空の文字列を表すフィールドを使用する

Concat(連結)

String.Concat(“abc”,”def”)

結果⇒”abcdef”

Insert(挿入)

“abcdef”.Insert(3,”zzz”)

結果⇒”abczzzdef”

Remove(削除)

“abcdef”.Remove(3,2)

結果⇒”abcf”

Replace(置換)

“abcdef”.Replace(“cd”,”xx”)

結果⇒”abxxef”

Length(文字数)

“abcdef”.Length

結果⇒6

Equals(比較)

“abcdef”.Equals(“abcdef”)

結果⇒True

Compare(大小区別なし比較)

String.Compare(“abcdef”,”ABCDEF”,True)

結果⇒0

※一致だと0を返す

ToUpper(大文字変換)

“abcdef”.ToUpper

結果⇒”ABCDEF”

ToLower(小文字変換)

“ABCDEF”.ToLower

結果⇒”abcdef”

Chars(1文字抽出)

“abcdef”.Chars(4)

結果⇒”e”

Substring(一部抽出)

“abcdef”.Substring(2,3)

結果⇒”cde”

PadLeft(先頭を埋める)

“abcdef”.PadLeft(10,”z”c)

結果⇒”zzzzabcdef”

PadRight(末尾を埋める)

“abcdef”.PadRight(8,”z”c)

結果⇒”abcdefzz”

StartWith(先頭一致)

“abcdef”.StartWith(“abc”)

結果⇒True

EndWith(末尾一致)

“abcdef”.EndWith(“ef”)

結果⇒True

Trim(空白削除)

”       abcdef       “.Trim

結果⇒”abcdef”

TrimStart(先頭空白削除)

”       abcdef       “.TrimStart

結果⇒”abcdef       

TrimEnd(末尾空白削除)

”       abcdef       “.TrimEnd

結果⇒”       abcdef”

IndexOf(位置検索)

“abcdef”.IndexOf(“b”)

結果⇒1

Split(分割)

“abcdef”.Split(“b”c)

結果⇒{a,cdef}

Join(配列結合)

String.Split(“@”,{“abc”,”def”})

結果⇒”abc@def”

Empty(空文字)

String.Empty

結果⇒””

【UiPath】文字列を置換する(.NET関数 Replace)

VB.NETの関数、「Replace」の使い方を紹介します。

Replace

文字列を置換します。

“文字列1”.Replace(“文字列2″,”文字列3”)

文字列1⇒対象文字列

文字列2⇒置換される文字列

文字列3⇒置換する文字列

使用例

文字列1⇒あいうえおかきくけこ

文字列2⇒えおか

文字列3⇒ABC

String型の変数strに文字列1を設定します。

Replaceの設定です。

文字列2“えおか”を文字列3“ABC”に置換します。

実行結果

一括置換

置換対象文字列が複数存在する場合、一括置換されます。

実行結果

【UiPath】指定地域(タイムゾーン)の時刻を取得する

指定地域(タイムゾーン)の時刻を取得する方法です。

日本(Tokyo)の時刻を取得し、米国(Hawaiian)の時刻に変換します。

TimeZoneInfo型

TImeZoneInfo型の変数を用意します。

日本(Tokyo)と米国(Hawaiian)で2つ変数を用意します。

タイムゾーン情報設定

日本(Tokyo)と米国(Hawaiian)のタイムゾーン情報を変数に設定します。

Tokyo_Time = TimeZoneInfo.FindSystemTimeZoneById(“Tokyo Standard Time”)

Hawaiian_Time = TimeZoneInfo.FindSystemTimeZoneById(“Hawaiian Standard Time”)

※取得したいタイムゾーンIDを赤字に設定

時刻を取得

日本(Tokyo)の現在時刻を取得します。

DateTimeOffset型の変数timeに設定します。

time = New DateTimeOffset(Now(), Tokyo_Time.BaseUtcOffset)

※現在時刻を2018/10/17 23:30:59とします

 

時刻を変換

取得した日本(Tokyo)時刻を米国(Hawaiian)の時刻に変換し、メッセージボックスに出力します。

TimeZoneInfo.ConvertTime(time, Hawaiian_Time).ToString

タイムゾーンID一覧

UTC-11

Samoa Standard Time

Hawaiian Standard Time

Alaskan Standard Time

Pacific Standard Time (Mexico)

Pacific Standard Time

US Mountain Standard Time

Mountain Standard Time (Mexico)

Mountain Standard Time

Central America Standard Time

Central Standard Time

Central Standard Time (Mexico)

Canada Central Standard Time

SA Pacific Standard Time

Eastern Standard Time

US Eastern Standard Time

Venezuela Standard Time

Paraguay Standard Time

Atlantic Standard Time

Central Brazilian Standard Time

SA Western Standard Time

Pacific SA Standard Time

Newfoundland Standard Time

E. South America Standard Time

Argentina Standard Time

SA Eastern Standard Time

Greenland Standard Time

Montevideo Standard Time

UTC-02

Mid-Atlantic Standard Time

Azores Standard Time

Cape Verde Standard Time

Morocco Standard Time

UTC

GMT Standard Time

Greenwich Standard Time

W. Europe Standard Time

Central Europe Standard Time

Romance Standard Time

Central European Standard Time

W. Central Africa Standard Time

Namibia Standard Time

Jordan Standard Time

GTB Standard Time

Middle East Standard Time

Egypt Standard Time

Syria Standard Time

South Africa Standard Time

FLE Standard Time

Israel Standard Time

E. Europe Standard Time

Arabic Standard Time

Arab Standard Time

Russian Standard Time

E. Africa Standard Time

Iran Standard Time

Arabian Standard Time

Azerbaijan Standard Time

Mauritius Standard Time

Georgian Standard Time

Caucasus Standard Time

Afghanistan Standard Time

Ekaterinburg Standard Time

Pakistan Standard Time

West Asia Standard Time

India Standard Time

Sri Lanka Standard Time

Nepal Standard Time

Central Asia Standard Time

Bangladesh Standard Time

N. Central Asia Standard Time

Myanmar Standard Time

SE Asia Standard Time

North Asia Standard Time

China Standard Time

North Asia East Standard Time

Singapore Standard Time

W. Australia Standard Time

Taipei Standard Time

Ulaanbaatar Standard Time

Tokyo Standard Time

Korea Standard Time

Yakutsk Standard Time

Cen. Australia Standard Time

AUS Central Standard Time

E. Australia Standard Time

AUS Eastern Standard Time

West Pacific Standard Time

Tasmania Standard Time

Vladivostok Standard Time

Central Pacific Standard Time

New Zealand Standard Time

UTC+12

Fiji Standard Time

Kamchatka Standard Time

Tonga Standard Time

 

【UiPath】文字列の長さを取得する(.NET関数 Length)

VB.NETの関数、「Length」の使い方を紹介します。

Length

文字列の長さを取得します。

文字列.Length

使用例

String型の変数strに文字列を設定します。

int型の変数int1に取得した文字数を設定します。

メッセージボックスに取得結果を出力します。

※int型なので.ToStringで文字列に変換します。

実行結果

 

 

【UiPath】文字列を削除する(.NET関数 Remove)

VB.NETの関数、「Remove」の使い方を紹介します。

Remove

文字列を削除します。

文字列.Remove(数値1,数値2)

数値1⇒削除する文字位置

数値2⇒削除する文字数

使用例

String型の変数strに文字列を設定します。

Removeの設定です。

3文字目(“う”)の後から2文字(“えお”)を削除します。

実行結果

応用編

【UiPath】文字列の最後の文字を削除

 

【UiPath】文字列を挿入する(.NET関数 Insert)

VB.NETの関数、「Insert」の使い方を紹介します。

Insert

文字列を指定の位置に挿入します。

“文字列1”.Insert(数値,”文字列2″)

数値⇒挿入する文字位置

使用例

String型の変数strに文字列を設定します。

Insertの設定です。

3文字目の後に、”えお”を挿入します。

実行結果

 

 

 

【UiPath】文字列を連結する(.NET関数 Concat)

VB.NETの関数、「Concat」の使い方を紹介します。

Concat

文字列を連結します。

String.Concat(“文字列1″,”文字列2”)

使用例

2つの文字列を連結してみましょう。

実行結果

連結する文字列は複数可能です。