Is anyone can help me to do this regex? I've been trying for hours without success.
in this code :
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<script type="text/javascript" src="myScript.js"></script>
</body>
</html>
"But not this"
I try to get with regex all the attribute value in green :
I have "(.*?)"
that match all but also "But not This"...
How can I do this ?
This is the correct Regex.
Thanks @Reza Saadati for your help
(?<==)("[a-zA-Z0-9.\s\S\-']*?.*?)"