How can i get text between “[” and “]” brackets from textfile. And these brackets should also be in result like this:
“Some text [ between brackets ] is all we want” to this:
“[ between brackets ]”
Trying to parse json array so i can get it to DataTable. Json includes at beginning some json object content so UiPath jsondeserialise activity can’t fetch array from json…
Additionally, if you want to parse that to an array, then maybe you can use that value in something like this:
JArray.Parse(extractedtext).Select(Function(x) If(x.ToString.Contains(" "),x.ToString.Trim,x)).ToArray //where extractedtext is what you pulled using the Regex