Lets consider I have a string called
string s = "jpeg, jpg, gif, png";
So from this I need to get each one like, I can assign each extension to one var variable such as
var a = jpeg
var b = jpg
var c = gif
var d = png
Same way if I will add more extensions to the string then accordingly I will have to get all with same var variable.
All you have to do is to use the javascript split
method-
$(function(){
var s = "jpeg, jpg, gif, png";
var match = s.split(', ')
console.log(match)
for (var a in match)
{
var variable = match[a]
console.log(variable)
}
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With