I have this list of meta tags in my view HTML (after the page loads). The tag is generated dynamically,
@meta = "\n <meta content=\content1\">\n <meta content=\content2\">\n <meta content='content2\">\n ....... <meta content=\"2019/01/10 09:59:59 +0900\" name=\"r_end\">\n \n"
I wanted to fetch the value 2019/01/10 09:59:59 +0900
inside content
i.e.<meta content=\"2019/01/10 09:59:59 +0900\" name=\"r_end\">
. Is there a way to get the value of the content from the meta tag.