Here I want to get all classes as a string using regex.
- What will be a good regex to match the below string.
Input String
<div class="container mx-5">
<button class="btn btn-primary mt-auto mb-8 mx-8 justify-center">Sign In</button>
<button class="btn btn-secondary mt-auto mb-8 mx-8 justify-center">Sign Out</button>
</div>
Expected Output from regex match
['class="container mx-5"', 'class="btn btn-primary mt-auto mb-8 mx-8 justify-center"', 'class="btn btn-secondary mt-auto mb-8 mx-8 justify-center"']