Skip to content

Regex issue  #23

@gnerd

Description

@gnerd

I am running the solution as-is.
I am not getting the main screen displaying all results (i.e. age is blank), and when you click the ">" it only displays one property for region.

It appears to be this
_values: MatchAll(
ThisItem.Result,
"{""Choices"":""(?[^""])"",""ColumnType"":""(?[^""])"",""Data"":""(?[^""])"",""Required"":""(?[^""])"",""Title"":""(?<Title>[^""]*)"""
)
},

My results looks like this (below) and only has one object that has Choices - so its only matching on one object. Is there a way to either force it grab all entries regardless if there is a choice string, or force the results to always include an empty choices? Great examples!
[
{
"ColumnType": "Text",
"Data": "Bob",
"Required": "Yes",
"Title": "Name"
},
{
"ColumnType": "Number",
"Data": "22",
"Required": "No",
"Title": "Age"
},
{
"ColumnType": "Yes/No",
"Data": "true",
"Required": "No",
"Title": "Enrolled"
},
{
"ColumnType": "Date",
"Data": "4/12/2023",
"Required": "Yes",
"Title": "Enrolled Date"
},
{
"Choices": "North;South;East;West",
"ColumnType": "Choice",
"Data": "North",
"Required": "Yes",
"Title": "Region"
},
{
"ColumnType": "Text",
"Data": "bob@contoso.com",
"Required": "No",
"Title": "Email"
}
]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions