Hi can u help me? I have this string:

{"hash":"ckF3DaT","title":"","description":"","width":3264,"height":2448,"size":372322,"ext":".jpg","animated":0,"datetime":"2013-01-21 09:21:06","ip":"2034930567"},{"hash":"uHQqxEe","title":"","description":"","width":1013,"height":742,"size":150170,"ext":".jpg","animated":0,"datetime":"2013-11-03 14:23:45","ip":"843476728"},{"hash":"GjMtq7C","title":"","description":"","width":3456,"height":4608,"size":2253640,"ext":".jpg","animated":0,"datetime":"2013-11-03 14:26:34","ip":"843476728"},{"hash":"QaPJwgY","title":"","description":"","width":3136,"height":2352,"size":1282337,"ext":".jpg","animated":0,"datetime":"2013-11-03 14:24:28","ip":"843476728"},{"hash":"DHUv4jG","title":"","description":"","width":4608,"height":3456,"size":2339272,"ext":".jpg","animated":0,"datetime":"2013-11-03 14:28:28","ip":"843476728"},

and this pattern (\\{\"hash\":\")([A-Za-z0-9]+)(.)(,\"ext\":\"\\.)([A-Za-z]+)

So by my option pattern have to match with {"hash":"ckF3DaT","title":"","description":"","wid th":3264,"height":2448,"size":372322,"ext":".jpg but java don't think so.

--- Update ---

okey so problem solved with * (\\{\"hash\":\")([A-Za-z0-9]+)(.*)(,\"ext\":\"\\.)([A-Za-z]+) this pattern work nice. But now it's finding just one of 5 and I want all of 5.

So this is final working pattern (\\{\"hash\":\")([A-Za-z0-9]+)(.*?)(,\"ext\":\"\\.)([A-Za-z]+)