{
  "synLogic": "char* $ret \u003d $api($1, $2, $3);",
  "help": "The ns_decode_html is used to convert given encoded html string into plain text",
  "notes": "",
  "returns": "char *",
  "arguments": "\u003ctable class\u003d\"newGuiTable\" style\u003d\"width:100%\" \u003e	\u003ctr\u003e	\u003cth\u003e Argument \u003c/th\u003e \u003cth\u003e Description \u003c/th\u003e \u003c/tr\u003e \u003ctr\u003e \u003ctd\u003e Input String \u003c/td\u003e \u003ctd\u003e Indicates input string \u003c/td\u003e	\u003c/tr\u003e \u003ctr\u003e \u003ctd\u003e Input String Length \u003c/td\u003e \u003ctd\u003e Length of input string (if known), If length is not known then provide 0 \u003c/td\u003e 	\u003c/tr\u003e \u003ctr\u003e \u003ctd\u003e Output String \u003c/td\u003e \u003ctd\u003e Indicates output buffer (Note: output buffer size should be sufficient large), if user is not sure for output buffer size, then pass NULL \u003c/td\u003e \u003c/tr\u003e \u003c/table\u003e",
  "parameterization": "argument xml_data can be parametrized using standard parametrization",
  "name": "ns_decode_html",
  "syntax": "char* ns_decode_html(char *in_str, int in_str_len, char *out_str)",
  "javaSyntax": "char* ns_decode_html(char *in_str, int in_str_len, char *out_str)",
  "cEx": "flow()\n{\n  char* decodedHtml;\n  char* inputStr \u003d \" \u0026lt;03/01/1987\u0026gt\";\n\n  decodedHtml \u003d ns_encode_html(inputStr, len, output_buff);\n  Output \n  Input string (html-encoded data)\n    \u0026lt;03/01/1987\u0026gt;\n  After conversion:\n    \u003c03/01/1987\u003e\n}",
  "javaEx": "flow()\n{\n  char* decodedHtml;\n  char* inputStr \u003d \" \u0026lt;03/01/1987\u0026gt\";\n\n  decodedHtml \u003d ns_encode_html(inputStr, len, output_buff);\n  Output \n  Input string (html-encoded data)\n    \u0026lt;03/01/1987\u0026gt;\n  After conversion:\n    \u003c03/01/1987\u003e\n}",
  "insertStrC": "*ns_decode_html(char *in_str, int in_str_len, char *out_str);",
  "insertStrJava": "*ns_decode_html(char *in_str, int in_str_len, char *out_str);",
  "description": "The ns_decode_html is used to convert given encoded html string into plain text",
  "component": [
    {
      "id": "$1",
      "type": "TextField",
      "label": "Input String",
      "labelVarCheckbox": "",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter input string",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "validate": {
        "inputType": "Text",
        "required": true
      }
    },
	{
      "id": "$2",
      "type": "TextField",
      "label": "Input String Length",
      "labelVarCheckbox": "",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter String Length",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "validate": {
        "inputType": "Number",
        "required": true,
        "min": "0",
        "max": "2147483647"
      }
    },
	{
      "id": "$3",
      "type": "TextField",
      "label": "Output String",
      "labelVarCheckbox": "",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter Output String",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "validate": {
        "inputType": "Text",
        "required": true
      }
    },
	{
      "id": "$ret",
      "type": "TextField",
      "label": "Return Variable",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter Return Variable",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "labelVarCheckbox": "",
      "argIndex": 0,
	  "title": "First character must be Alpha.\r\nOther characters are Alpha, Numeric or Underscore",
      "validate": {
        "inputType": "Text",
		"pattern": "^[a-zA-Z][a-zA-Z0-9_]{0,63}$",
        "disabled": false,
        "required": false,
        "min": 0,
        "max": 0,
        "method": "isValidVar(arg)"
      }
    }
  ]
}
