This view helps determine how you can manipulate data retrieved. 
You can have a list of items, or a list of tuples if your regular expression uses grouping.
e.g:
	<img.*?> will return a list of data
	<img(.*?)alt(.*?)> will return a list of tuples.

You can access data as you would any list.


