local t = '15 25' local c1 , c2 = t : match ( '(%d*) (%d*)' ) print ( c1 , c2 )
import re t = '15 13' c1 , c2 = re . match ( r'(\d*) (\d*)' , t ) . group ( 0 ) print ( c1 , c2 )