> How do you search a character array for the \ character? > > I've tried strchr(string, '\'') but that doesn't seem to work. Try strchr(string, '\\'); -Scott