In a JavaScript model file, you have access to a global Grabber
helper object, which contains a handful of functions useful in models.
Some of them are simply JavaScript functions, and others are bindings to C++ code, when the JavaScript API is not sufficient, or when Qt can do the job easily.
Parameters:
Returns: object[]
Global match a PCRE regex in a string.
\d+ (\d+) (?<third>\d+)
"01 23 45 67 89 01 23 45 67 89"
[
{
"0": "01 23 45",
"1": "23",
"2": "45"
"third": "45"
},
{
"0": "67 89 01",
"1": "89",
"2": "01",
"third": "01"
},
{
"0": "23 45 67",
"1": "45",
"2": "67",
"third": "67"
}
]
Parameters:
Returns: object
Parses the string passed and return the parsed XML tree.
<?xml version="1.0" encoding="UTF-8"?>
<posts type="array">
<post>
<id>123</id>
<name>toto</name>
</post>
<post>
<id attr="456">789</id>
<name>test</name>
</post>
</posts>
{
"posts": {
"@attributes": {
"type": "array"
},
"post": [
{
"id": {
"#text": "123"
},
"name": {
"#text": "toto"
}
},
{
"id": {
"@attributes": {
"attr": "456"
},
"#text": "789"
},
"name": {
"#text": "test"
}
}
]
}
}