literal_ints_many_json
No overview available.
def literal_ints_many_json(
input_string: string
) - > list[int]
Parses a string containing multiple JSON objects or literal integers and returns them as a list of Python integers.
Parameters
| Name | Type | Description |
|---|---|---|
| input_string | string | The raw string containing one or more JSON-formatted integer literals to be parsed. |
Returns
| Type | Description |
|---|---|
list[int] | A list of integers extracted from the input string. |