endsWith in JavaScript

前端 未结 30 1740
-上瘾入骨i
-上瘾入骨i 2020-11-22 05:41

How can I check if a string ends with a particular character in JavaScript?

Example: I have a string

var str = \"mystring#\";

I wa

30条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-22 06:10

    Just another quick alternative that worked like a charm for me, using regex:

    // Would be equivalent to:
    // "Hello World!".endsWith("World!")
    "Hello World!".match("World!$") != null
    

提交回复
热议问题