PowerApps icon indicating copy to clipboard operation
PowerApps copied to clipboard

Multiline text support for choice fields.

Open coustack opened this issue 2 years ago • 0 comments

How to modify the regex below to support the choice field being multi line? Many choice arrays are over the single line of text limit.

ClearCollect( colData, ShowColumns( MatchAll( ThisItem.Result, "{""Choices"":""(?<Choices>[^""])"",""ColumnType"":""(?<ColumnType>[^""])"",""Data"":""(?<Data>[^""])"",""Required"":""(?<Required>[^""])"",""Title"":""(?<Title>[^""]*)""}" ),"Title","Required","ColumnType","Choices","Data") );

Set( varFormMode, "Edit" );

Any help is appreciated!

coustack avatar Sep 12 '22 21:09 coustack