0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

UiPathのコードのほうのメモ

Last updated at Posted at 2019-06-12

ここは

CSVを読み込んで集計して出力するタイプの処理を作っていると、コピペしたいコードが出てくるので、まとめておこうと思いました。

随時追加修正されます。

DataTable.Selectの結果がなくても大丈夫

If分岐でよく使います。
Length > o のTrueでデータがあるから処理する。Falseだったらスルーされるのでエラーも出ない。
エラーは、データがないのに処理しようとすると怒られるエラー。

datatable.Select("年 = 2019").Length > 0
datatable.Select("姓名 = '" + member("姓名").ToString + "'").Length > 0

文字列の改行を消したい

ブラウザ上のテーブルのマス内が改行されていてデータスクレイピングしたら、改行が入りまくって困ったときに使った。

System.Text.RegularExpressions.Regex.Replace(strings,"[\n]","")
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?