Skip to content

Substring any kind of HTML String

i need to divide any kind of html code (string) to a list of tokens. For example: or or What i tried to do : My output: So i tried to split at “/>” which is working for the first case. Then i tried several things. Tried to identify the “name”, so the first identifier of the html str…

Where developers save choice options in Django?

For example i have a choice Should i create a model like: and create some color instances in django-admin or i need to declare CHOICE(above), where i save all colors(even if there are many colors)? Answer Let’s say you need to make a model product and this model has multiple colors. In this case you nee…