d[24]のトークンを""で置き換えたい。誰か助けてくれませんか。ありがとう
:1 > d = "01-04-2013 ist the first-day of April"
=> "01-04-2013 ist the first-day of April"
:2 > d.index(/(\D|\s)(\/|\-|\:|\#|\\|\"|\'){1,}/)+1
=> 24
:3 > d[d.index(/(\D|\s)(\/|\-|\:|\#|\\|\"|\'){1,}/)+1]
=> "-"