字串常用操作合集

2021-09-29 04:38:32 字數 768 閱讀 3967

1、字串忽略大小寫比較

/**

* *summary: 忽略大小寫比較兩個字串* ignorecaseequals()

* @param str1

* @param str2

* @return

*/public static boolean ignorecaseequals(string str1,string str2)

2、擷取指定字元前面和後面的內容

string str = "abcd";

str.substring(0, str.indexof("b") + 1);

"ab"

str.substring(str.indexof("b") + 1);

"cd"

3、字串首字母大寫

public static void main(string args) {

scanner sc = new scanner(system.in);

string str = sc.nextline();

string s1 = str.substring(0, 1);//獲取第乙個字母

s1 = s1.touppercase();//將第乙個字母轉換為大寫字母

string s2 = str.substring(1,

Python合集之Python字串常用操作 四

在上一節的合集中,我們了解了python字串間一些常用操作的相關知識,本節我們將進一步了解一下python字串常用的相關知識。在python中,字串物件提供了lower 和upper 方法進行字母大小寫轉換,即可用於將大寫字母轉換為小寫字母或者將小寫字母轉換為大寫字母。lower 方法用於將字串中的...

字串常用操作。。。

include include include char itoa int value result char malloc sizeof char i 1 for j 0 jint i 65 char p itoa i printf s n p free p p null include incl...

字串常用操作

coding utf 8 import string1 判斷str unicode字串物件 def isastring anobj return isinstance anobj,basestring basesting是str,unicode的父類 defisaint anobj return i...