2013年6月19日 星期三

Python check if string is JSON format

def isJSON(s):
    import json

    try:
        json_object = json.loads(s)
    except ValueError, e:
        # invalid json
        return False
    else:
         # valid json
        return True

沒有留言:

張貼留言