LoginSignup
1
0

PowerApps 文字列をsplit後、各値取得する方法

Posted at

string testStr = "200,300,400";

一個目の値:Index(Split(testStr,","),1).Value; //200
二個目の値:Index(Split(testStr,","),2).Value; //300
三個目の値:Index(Split(testStr,","),3).Value; //400

1
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
1
0