字串總結

2022-07-29 02:18:15 字數 730 閱讀 1291

var str='你好漂亮-www.baidu.com';

str.charat(1);    //'好'

str.charcodeat(2);  //21619

string.fromcharcode(22937,21619);  //'你好'

str.indexof('b',3);   //9    從第3位開始找到第乙個'b'的索引

str.lastindexof('o');  //   16

'1000'<'2'    //true

'1000'>2  //true

str.substring(0,4);  //'你好漂亮'

str.substring(-2,4);  //'你好漂亮'       會把負數變為0

str.substring(4,0);  //'你好漂亮'      會把倆引數大小自動比較,小的在前,大的在後

str.slice(-3);  //'com'     會從後往前數

str.touppercase();     //'你好漂亮-www.baidu.com'

str.tolowerpercase();     //'你好漂亮-www.baidu.com'

str.split('.',2);  //['你好漂亮-www','baidu']

字串總結?

其實就是模板彙總好伐 1 字串hash 可以解決一切字串問題。複雜度成迷。include using namespace std define maxn 10000 define read x scanf d x define maxm 1500 define ull unsigned long l...

字串總結

字串輸入輸出 getchar 與putchar include include using namespace std int main 兩種輸入方式 scanf c x 只讀取乙個字元 scanf s x 遇到空格,換行才會停止 cin與scanf s x 的作用大致相同 c char st 10...

字串總結

1 找出回文子串 分析 對於回文子串,最深的印象就是正序和倒序產生的字元相同。其實更深刻的表述方式應該是去除首尾字元後,裡面的依然是個回文子串。這一點也是我沒有想到的。利用動態規劃,相當於乙個遞迴歸納的想法,只要s i 1 j 1 是個回文子串,那麼在s i s j 時,s i j 就是個回文子串。...