Hi Guys,
can anyone help me to write a regex function for the following string .So my string is
contents=false
book_title='The Old Man and His Sons'
sections=[
'The Old Man and His Sons'
]
now i want to extract just
The Old Man and His Sons
so far my code looks like this
Match o = Regex.Match(item.text, "book_title='([A-Za-z0-9])'");
thanks a lot for all the help