feedbackResultToast(false, result.error || "some text some text");
feedbackResultToast(false, "some text some text");
feedbackResultToast(false, result.error || "some text some text", true);
feedbackResultToast(false, result.error || `some text some text`);
i have this function(feedbackResultToast) inside my js file, i need to match them, and take only the text group between ” or ‘ or ` .
The regex should be written in c# .NET
i tried to do regex in c# .NET, but i can’t finish it
my regex:
feedbackResultToast,s*|s*[""'`]{1}([^""'`]*)[""'`]{1}(?:,s*[^)]*)?)
For example, my regex, matched also this piece of code, that is not right
if (data.action== "edit") {
or
textBtnModal: "Add",