Groovy - How to compare the string?

后端 未结 7 1653
醉话见心
醉话见心 2021-02-04 23:03

how to compare the string which is passed as a parameter

the following method is not working.

 String str = \"saveMe\"

 compareString(str)

 def         


        
7条回答
  •  南方客
    南方客 (楼主)
    2021-02-04 23:41

    This should be an answer

    str2.equals( str )

    If you want to ignore case

    str2.equalsIgnoreCase( str )

提交回复
热议问题