On Tue, Jan 13, 2009 at 8:16 PM, flexaustin <[email protected]> wrote:
> So if I have this string (quotes are included in the string):
> "name":"Big Brown Cow <b>'(--Foot)'</b>","title":"hello"
>
> I want to include everything after "name": and before ","
var s:String = "\"name\":\"Big Brown Cow
<b>'(--Foot)'</b>\",\"title\":\"hello\"";
var a:Array = s.match(/"[^"]*":([^,]*)/g);
trace(a[0]);
trace(a[1]);
var s1:String = s.replace(/"[^"]*":([^,]*),?/g, "$1\n");
trace(s1);
Manish
--
http://manishjethani.com