diff options
| -rw-r--r-- | README.md | 20 | 
1 files changed, 11 insertions, 9 deletions
| @@ -219,24 +219,26 @@ Perform a JSONPath query and obtain the resulting JSON object handle.  * **Spath** JSONPath expression -### jsonpathrplvalk -Replace a value in a location specified by the JSONPath expression *Spath* at k-rate. +### jsonpathrplval +Replace a value in a location specified by the JSONPath expression *Spath* -	jsonpathrplvalk iJson, Spath, kvalue -	jsonpathrplvalk iJson, Spath, Svalue +	jsonpathrplval iJson, Spath, ivalue +	jsonpathrplval iJson, Spath, Svalue  * **iJson** JSON object handle to evaluate  * **Spath** JSONPath expression -* **kvalue** numeric value to replace target with +* **ivalue** numeric value to replace target with  * **Svalue** string value to replace target with -### jsonpathrpl -Replace a JSON object specified by the JSONPath expression *Spath* +### jsonpathrplvalk +Replace a value in a location specified by the JSONPath expression *Spath* at k-rate. -	jsonpathrpl iJson, Spath, iJsonNew +	jsonpathrplvalk iJson, Spath, kvalue +	jsonpathrplvalk iJson, Spath, Svalue  * **iJson** JSON object handle to evaluate  * **Spath** JSONPath expression -* **iJsonNew** JSON object handle to replace target with +* **kvalue** numeric value to replace target with +* **Svalue** string value to replace target with  ### jsonptr |