Ejemplo n.º 1
0
def card_set_number(card):
	return regex.first_match_in_string(card, '(?<=/)\d*[ab]*')
Ejemplo n.º 2
0
def card_set_name(card):
	title = card_title(card)
	return regex.first_match_in_string(title, '(?<=\().*(?=\))')
Ejemplo n.º 3
0
def card_set(card):
	return regex.first_match_in_string(card, '^.*(?=/)')