如何在字符串中找到一個字符,使用JAVAScript?
有一個簡單的方法。
每個字符串都有一個includes()方法,可以接受一個(或多個)字符。
如果字符串中包含該字符,該方法返回true,如果不包含,則返回false。
'a nice string'.includes('a') //true
'a nice string'.includes('b') //false
如果你需要找到字母在字符串中的準確位置,需要使用indexOf()方法。
'a nice string'.indexOf('a') //0
'a nice string'.indexOf('c') //4
如果有多個出現,本方法從左邊開始,返回第一個找到的位置。