本文介绍了批不等于运营商的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

根据,!==!是不等于字符串操作符。
尝试它,我得到:

According to this, !==! is the not-equal string operator.Trying it, I get:

C:\> if "asdf" !==! "fdas" echo asdf
!==! was unexpected at this time.

我在做什么错了?

What am I doing wrong?

推荐答案

尝试

如果不是ASDF==FDAS回声ASDF

这篇关于批不等于运营商的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 05:17