PowerApps
PowerApps copied to clipboard
Multiline text support for choice fields.
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!