consider I have a text like :
Some text 1
`special text`
Some text 2
I can get “special text” with regex, but I want other parts of the text too as an array, something like this :
[
Some text 1,
special text,
Some text 2
]
I’ve tried below pattern, but I think it’s not the answer
/(.*)`(.*)`(.*)/gm