what is the pattern for getting a-z, A-Z, 0-9, space, special characters to deteck url
This is my input string:
{id:1622415796,name:Vincent Dagpin,picture:https://fbcdn-profile-a.akamaihd.net/hprofile-ak-snc4/573992_1622415796_217083925_q.jpg}
This is the pattern: so far
([a-z_]+):[ ]?([\d\s\w]*(,|}))
Expected Result:
id:1622415796
name:Vincent Dagpin
picture:https://fbcdn-profile-a.akamaihd.net/hprofile-ak-snc4/573992_1622415796_217083925_q.jpg
the problem is i can't get the last part.. the picture url..
any help please..