varchar字串分割

2021-08-30 23:47:56 字數 1009 閱讀 5640

剛寫的,備份下

declare

str varchar2(100) := 'ids=121|age=1356|password=gaowei';

temp varchar2(200) := '';

s_current varchar2(200) := '';    -- 當前遍歷的字串

start_index int:=1;               -- 開始索引

end_index int := 0;               -- 擷取多少個字串

begin

-- 分隔str

for i in 1..length(str) loop

end_index := end_index + 1;   -- 迴圈一次就加一次,比如第一次迴圈那麼就擷取1個字串

s_current :=  substr(str,i,1);  -- 拿到當前字串 'i'

if (s_current = '|') or i = length(str) then

--dbms_output.put_line(start_index || '==' || end_index);

temp := substr(str,start_index,end_index);

start_index := i+1;

end_index := 0;           

if i <> length(str) then

dbms_output.put_line(substr(temp,1,length(temp)-1));

--                dbms_output.put_line(temp);                 

else

dbms_output.put_line(temp);

end if;         

end if;        

end loop;

end;

mysql分割字串 mysql分割字串

專案有通過一批id去過濾結果的需求,因為這個id是從其他平台拉下來的excel,為了避免加引號逗號的麻煩,在mysql儲存過程裡面拼接。在此做個記錄。很多地方用得上。1.通過某個字元,分割字串的函式。輸入分別為f string 待分割字串 f delimiter 分割字元 f order 取的字串的...

分割字串

string.split char 返回包含此例項中的子字串 由指定 char 陣列的元素分隔 的 string 陣列。由 net compact framework 支援。string.split char,int32 返回包含此例項中的子字串 由指定 char 陣列的元素分隔 的 string ...

分割字串

最近手裡的活用到分割字串,自己嘗試寫了乙個,在網上找到幾個,留著以後備用。char steps char token char strusbinfo 512 memcpy strusbinfo,1e 2f 3g strlen 1e 2f 3g token strtok strusbinfo,step...