例如:ss16d1wd16sdsw2134,提取出來的整數為16
最後輸出的16進製為:10
public class test06
}} system.out.println("從字串中提取出來的整數為:"+b);
integer numm = integer.parseint(b);
system.out.println("提取出來的整數的二進位制為:"+integer.tobinarystring(numm));
system.out.println("提取出來的整數的八進位制為:"+integer.tooctalstring(numm));
system.out.println("提取出來的整數的十六進製制為:"+integer.tohexstring(numm));
}}
從字串中提取出來的整數為:16
提取出來的整數的二進位制為:10000
提取出來的整數的八進位制為:20
提取出來的整數的十六進製制為:10
查詢字串中出現次數最多的字元
如下 include using namespace std typedef struct nodesnode 返回次數最多的字元節點,從大到小排阿node 0 c count最大 snode checkcount snode node,int len for int i 0 i len 1 i s...
查詢字串中子串出現的所有位置
直接上 方案一用find方法 def find all str1,date,start,end while start end i str1.find date,start,end if i 1 break start i 1 print i str1 好主意。好主意,好主意 start 0 end...
php查詢字串出現次數的方法
在php中查詢字串出現次數的查詢可以通過substr count 函式來實現,下面就來給大家詳細介紹這些函式.substr count haystack,needle offset length 其中引數 haystack表示母字串,needl表示要查詢的字元 offset表示查詢的起點,lengt...