From: Mickael Faivre-Macon Date: 2009-01-28T20:26:56+09:00 Subject: regexp multiple matches Hi, /(\d+),(\d+)(;(\d+),(\d+))*/ This regexp matches are: 0: (5,1;5,7;3,2) 1: (5) 2: (1) 3: (;3,2) 4: (3) 5: (2) My question is why ;5,7 is not matched ? Thanks, Mickael. -- Posted via http://www.ruby-forum.com/.