You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thanks for your comment. Yes, it seems like this indeed doesn't work, as it will treat any of the statements in the "any of" group equally and gets confused by the parenthesis around the inner two conditions.
The closest I can get is
capture (
any of (
capture(literally 'data-id'), literally '="',
literally 'src="'
)
)
which of course isn't right. Maybe working with quantifiers helps to find a way around, but this shouldn't be the case. I'll have a look at it.
I am wrong or i can't do this regex : ((data-id)="|src=")
I tried lots of thing, my last attempt is this one :
capture ( any of ( ( capture(literally 'data-id'), literally '="' ), (literally 'src="') ) )
The SRL Query contains an error: Non-matching parenthesis found.
The text was updated successfully, but these errors were encountered: