js如何在字符串中查找某個(gè)字符的位置
可以使用 JavaScript 中的字符串方法來查找某個(gè)字符在字符串中的位置。以下是一些示例:
在字符串中查找某個(gè)字符的位置:
const str = "Hello, world!";
const search = "o";
const index = str.indexOf(search);
if (index !== -1) {
console.log(`The character '${search}' is found at index '${index}'.`);
} else {
console.log(`The character '${search}' is not found in the string.`);
}在字符串中查找某個(gè)字符的位置,并打印出該字符的值:
const str = "Hello, world!";
const search = "o";
const index = str.indexOf(search);
if (index !== -1) {
console.log(`The character '${search}' is found at index '${index}'.`);
console.log(str.charAt(index));
} else {
console.log(`The character '${search}' is not found in the string.`);
}在字符串中查找某個(gè)字符的位置,并將該字符替換為另一個(gè)字符:
const str = "Hello, world!";
const search = "o";
const newStr = str.replace(search, "x");
console.log(`The character '${search}' is found at index '${index}'.`);
console.log(newStr);在這些示例中,我們使用了 indexOf() 方法來查找字符串中的某個(gè)字符,并使用 charAt() 方法來獲取該字符在字符串中的位置。如果找到了該字符,我們使用 charAt() 方法來獲取該字符的值,并將其打印出來。如果沒有找到該字符,我們使用 -1 作為返回值來表示該字符不在字符串中。
附:js 在字符串中快速查找字符串并指出對應(yīng)的起始位置和結(jié)束位置
let a = 'dafdsafasdfadgdafasfsagadfasfsafsadfsda';
let str = 'da';
let b = a.indexOf(str);
let i = 0;
let locationList = [];
let locationObj = {};
while(a.indexOf(str,i) !== -1){
locationObj = {};
locationObj.startNum = a.indexOf(str,i);
locationObj.endNum = a.indexOf(str,i) + str.length - 1
locationList.push(locationObj);
console.log("開始",i);
console.log("起始位置",a.indexOf(str,i));
console.log("結(jié)束位置",a.indexOf(str,i) + str.length - 1);
console.log("三種情況:1、選擇位置在首位,2、選擇位置在中間,3、選擇位置在末尾");
i = a.indexOf(str,i) + str.length;
}
let d = a.split(str);
for(let i = d.length - 1;i >=0 ; i--){
if(i !== 0){
d.splice(i , 0 ,str);
}
}
if(d[0] === '') d.splice(0,1);
if(d[d.length - 1] === '') d.splice(d.length - 1,1);
console.log("c===================>", d);
let oneList = [];
let oneObj = {
};
for(let i = 0;i<d.length;i++){
oneObj = { }
if(d[i] === str){
oneObj.text = d[i];
oneObj.isSelect = true;
oneObj.isActive = false;
if(i !== 0) {
oneObj.startNum = locationList[oneList[i - 1].index].startNum
oneObj.endNum = locationList[oneList[i - 1].index].endNum
oneObj.index = oneList[i - 1].index + 1;
}
else {
oneObj.startNum = locationList[0].startNum
oneObj.endNum = locationList[0].endNum
oneObj.index = 1
}
}else{
oneObj.text = d[i];
oneObj.isSelect = false;
oneObj.isActive = false;
if(i !== 0) oneObj.index = oneList[i - 1].index;
else oneObj.index = 0
}
oneList.push(oneObj);
}
console.log("oneList=================>", oneList);總結(jié)
到此這篇關(guān)于js如何在字符串中查找某個(gè)字符位置的文章就介紹到這了,更多相關(guān)js字符串查找字符位置內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
js 將線性數(shù)據(jù)轉(zhuǎn)為樹形的示例代碼
這篇文章主要介紹了js 將線性數(shù)據(jù)轉(zhuǎn)為樹形的示例代碼,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-05-05
JS實(shí)現(xiàn)的網(wǎng)頁倒計(jì)時(shí)數(shù)字時(shí)鐘效果
這篇文章主要介紹了JS實(shí)現(xiàn)的網(wǎng)頁倒計(jì)時(shí)數(shù)字時(shí)鐘效果,是一款非常實(shí)用的javascript倒計(jì)時(shí)特效,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-03-03
微信小程序 JS動態(tài)修改樣式的實(shí)現(xiàn)代碼
這篇文章主要介紹了微信小程序 JS動態(tài)修改樣式的實(shí)現(xiàn)代碼,原理是綁定數(shù)據(jù),然后動態(tài)的修改數(shù)據(jù),從而實(shí)現(xiàn)動態(tài)樣式的改變而已,需要的朋友可以參考下2017-02-02
微信小程序登錄時(shí)如何獲取input框中的內(nèi)容
這篇文章主要介紹了微信小程序登錄時(shí)如何獲取input框中的內(nèi)容,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2019-12-12
Typescript模塊的導(dǎo)入導(dǎo)出與繼承方式
這篇文章主要介紹了Typescript模塊的導(dǎo)入導(dǎo)出與繼承方式,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-09-09
JS動態(tài)的把左邊列表添加到右邊的實(shí)現(xiàn)代碼(可上下移動)
在javascript前端開發(fā)過程中經(jīng)常見到動態(tài)的把左邊列表添加到右邊,基于js代碼怎么實(shí)現(xiàn)的呢?今天小編通過本文給大家介紹下js 左邊列表添加到右邊的實(shí)現(xiàn)方法,感興趣的朋友一起看看吧2016-11-11
微信小程序 setData 對 data數(shù)據(jù)影響問題
這篇文章主要介紹了微信小程序 setData 對 data數(shù)據(jù)影響的 一點(diǎn)研究,非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-04-04

