1) Compute the direction the enemy must follow :
direction = normalize ( player - enemy )
2) Compute the new enemy position, according to some velocity :
enemy = enemy + direction * velocity
where :
direction, enemy, player are 2D vectors
velocity is a scalar
Hope it helps