contains(regexp) 关于 QML 中可能的 Qstring/字符串

发布于 2024-11-19 17:09:21 字数 749 浏览 2 评论 0原文

我在 QML 中有一个代码片段,它应该在 screen.text 中查找正则表达式“Calling”,如果找不到,只有这样它才会更改 screen.text。不幸的是,QML/QString < 中的文档不清楚a href="http://doc.qt.nokia.com/4.7-snapshot/qstring.html#QString" rel="noreferrer">文档。

  Button{
        id: call
        anchors.top: seven.bottom
        anchors.left: seven.left

        text: "Call"
        width: 40

        onClicked:{
            if(screen.text.toString().startsWith("Calling" , false))
                return;
            else
                screen.text = "Calling " + screen.text
        }
    }

我得到的错误是:

文件:///home/arnab/workspace/desktop/examples/cellphone.qml:127: 类型错误:表达式“screen.text.toString().startsWith”的结果 [未定义] 不是一个函数。

I have a code snippet in QML which should look for the regexp "Calling" in screen.text, and if it is not found, only then does it change the screen.text.Unfortunately, the documentation is not clear in QML/QString documentation.

  Button{
        id: call
        anchors.top: seven.bottom
        anchors.left: seven.left

        text: "Call"
        width: 40

        onClicked:{
            if(screen.text.toString().startsWith("Calling" , false))
                return;
            else
                screen.text = "Calling " + screen.text
        }
    }

The error I get is :

file:///home/arnab/workspace/desktop/examples/cellphone.qml:127:
TypeError: Result of expression 'screen.text.toString().startsWith'
[undefined] is not a function.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

眼藏柔 2024-11-26 17:09:22

就像其他两个答案所示:toString()给出了一个JavaScript字符串,而不是QString,并且JavaScript字符串没有startsWith() >。使用所示的解决方法之一。

Like the other two answers indicate: toString() gives a JavaScript string, not a QString, and the JavaScript string does not have a startsWith(). Use one of the workarounds shown.

长梦不多时 2024-11-26 17:09:21

您必须在处理程序中使用 Javascript 函数:

        onClicked:{
        var patt = /^Calling/;
        if(patt.test(screen.text))
            return;
        else
            screen.text = "Calling " + screen.text
    }

You have to use Javascript functions in the handler:

        onClicked:{
        var patt = /^Calling/;
        if(patt.test(screen.text))
            return;
        else
            screen.text = "Calling " + screen.text
    }
一生独一 2024-11-26 17:09:21

因为函数“startsWith”不是标准函数。

不能说您是否可以在 QML JS 中使用原型,但您使用此代码:

String.prototype.startsWith = function(str) 
{return (this.match("^"+str)==str)}

或仅

if(screen.text.toString().match("^Calling")==screen.text.toString())

更多内容请阅读:http://www.tek-tips.com/faqs.cfm?fid=6620

Because function "startsWith" is not standard function.

Can't say if you can use prototypes in QML JS but you use this code:

String.prototype.startsWith = function(str) 
{return (this.match("^"+str)==str)}

or only

if(screen.text.toString().match("^Calling")==screen.text.toString())

more to read here: http://www.tek-tips.com/faqs.cfm?fid=6620

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文