From: Jon Date: 2007-03-31T00:34:25+09:00 Subject: Regex Black Magic... how to stop matching if char? I'm trying to translate a strange derivative of xml into valid xml. Here is an example line: gofaststoppednameval<......and on REXML pukes on the tag... which it should. There should be some kind of attribute declaration instead. I want to translate it to something like this: I'm trying to make a regex to detect the funny tags. Here is what I have so far: xml_fix=/<(\S+)\s+(\d+):(\d+)>/ This is great, but it will match this: instead of just this: ...because there is no gauranteed whitespace between tags. Basically, I need to stop matching if a ">" is found. I've never had to deal with anything quite like this in my regex experience. Any help or thoughts of a better way to do things is much appreciated! -- Posted via http://www.ruby-forum.com/.