เพื่อให้เข้าใจถึงวิธีการstrtok()
ทำงานอันดับแรกต้องรู้ว่าตัวแปรคงคืออะไร ลิงค์นี้อธิบายได้ดีทีเดียว ....
กุญแจสำคัญในการดำเนินการstrtok()
คือการรักษาตำแหน่งของตัวคั่นสุดท้ายระหว่างการโทรแบบ seccessive (นั่นคือเหตุผลที่strtok()
ยังคงแยกวิเคราะห์สตริงดั้งเดิมที่ส่งผ่านไปยังเมื่อมีการเรียกใช้ด้วยการnull pointer
โทรติดต่อกัน) ..
ลองดูstrtok()
การใช้งานของฉันเองที่เรียกว่าzStrtok()
ซึ่งมีฟังก์ชันการทำงานที่แตกต่างจากที่มีให้strtok()
char *zStrtok(char *str, const char *delim) {
static char *static_str=0; /* var to store last address */
int index=0, strlength=0; /* integers for indexes */
int found = 0; /* check if delim is found */
/* delimiter cannot be NULL
* if no more char left, return NULL as well
*/
if (delim==0 || (str == 0 && static_str == 0))
return 0;
if (str == 0)
str = static_str;
/* get length of string */
while(str[strlength])
strlength++;
/* find the first occurance of delim */
for (index=0;index<strlength;index++)
if (str[index]==delim[0]) {
found=1;
break;
}
/* if delim is not contained in str, return str */
if (!found) {
static_str = 0;
return str;
}
/* check for consecutive delimiters
*if first char is delim, return delim
*/
if (str[0]==delim[0]) {
static_str = (str + 1);
return (char *)delim;
}
/* terminate the string
* this assignmetn requires char[], so str has to
* be char[] rather than *char
*/
str[index] = '\0';
/* save the rest of the string */
if ((str + index + 1)!=0)
static_str = (str + index + 1);
else
static_str = 0;
return str;
}
และนี่คือตัวอย่างการใช้งาน
Example Usage
char str[] = "A,B,,,C";
printf("1 %s\n",zStrtok(s,","));
printf("2 %s\n",zStrtok(NULL,","));
printf("3 %s\n",zStrtok(NULL,","));
printf("4 %s\n",zStrtok(NULL,","));
printf("5 %s\n",zStrtok(NULL,","));
printf("6 %s\n",zStrtok(NULL,","));
Example Output
1 A
2 B
3 ,
4 ,
5 C
6 (null)
รหัสนี้มาจากไลบรารีการประมวลผลสตริงที่ฉันดูแลบน Githubเรียกว่า zString ดูรหัสหรือแม้แต่มีส่วนร่วม :)
https://github.com/fnoyanisi/zString
strtok()
แก้ไขสตริงอาร์กิวเมนต์โดยการยกเลิกโทเค็นด้วย NUL ก่อนส่งคืน ถ้าคุณพยายามที่จะตรวจสอบทั้งบัฟเฟอร์ (STR [])strtok()
คุณจะเห็นว่ามันถูกแก้ไขระหว่างสายต่อเนื่องเพื่อ