How can I acheive this transformation in google sheets? [closed] - if-statement

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I want the rows on the left to be transformed into the one on the right (by splitting on a comma) ,
Actual data contains thousand of such rows, how can I do it easily?

use:
={A1:D1; ARRAYFORMULA(SPLIT(QUERY(FLATTEN(IF(IFERROR(SPLIT(C2:C, ","))="",,
A2:A&"♀"&B2:B&"♀"&SPLIT(C2:C, ",")&"♀"&D2:D)),
"where Col1 is not null"), "♀"))}

Related

Get sql the property and field names regex [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 days ago.
The community is reviewing whether to reopen this question as of 6 days ago.
Improve this question
I have regex:
(?:(\(\n\s*\[)|(?:,\[))(?<field>.*?)\]\s*(?<properties>.*\n.)
it's working partially as shown here:
https://regex101.com/r/5o3o1f/1
The problem being that my regex so far doesn't capture the data type description if that's interrupted by a newline like in those 2 cases I highlighted in the picture shared.

check if I have a value in a column for a unique identifier [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed last month.
Improve this question
I have a table in which I have this information :
I want to have this result by a calculated column or measure dax.
Thanks
Here's your solution. Try it out, it solves your question!

Extracting a word between two parenthesis regex [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I am trying to extract word General using Pyspark regex from the following string:
:52.089;emailI_Pm|T(General)|20000;ml2736
How can I do it?
Thanks
re.match(r".*\((.*)\).*", ":52.089;emailI_Pm|T(General)|20000;ml2736")[1]

Clang-Tidy: check number of lines in a function [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Can you please help me with how to check CPP files in a project for functions exceeding 'n' number of lines using Clang-Tidy?
You can use the readability-function-size check and set the LineThreshold parameter to your n value.

Remove hastag/pound/octothorpe from string in R [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I have a string which has a hastag/pound/octothorpe in it, and want it removed using a regex expression.
e.g.
iii <- '#lkdjljf, lkdflsdkf'
i would like a gsub(regex_bit_here,'',iii)
to remove the hastag/pound/octothorpe
Thanks
I have triedgsub("^#",'',iii), and it works