QtQml.String

The String object represents a string value More...

Import Statement: import QtQml 2.2

Methods

  • string arg(value)

Detailed Description

The QML String object extends the JS String object with the arg() function.

See also href="http://www.ecma-international.org/publications/standards/Ecma-262.htm">ECMAScript Language Specification.

Method Documentation

string arg(value)

Returns a copy of this string with the lowest numbered place marker replaced by value, i.e., %1, %2, ..., %99. The following example prints "There are 20 items"

var message = "There are %1 items"
var count = 20
console.log(message.arg(count))