Bonjour, je voudrais récuperer ce qu’il y’a vant strchr :
1 2 3 | char string[] = "hello this is a sentence"; char *token; token = strchr(string, ' '); |
ce code me retourne this is a sentence
moi je voudrais récupérer : hello
sur google quand je tape strchr reverse, je trouve la fonction strrchr mais elle ne fait pas ce que je voudrais qu’elle fasse, elle retourne la dernnier occurence
moi je voudrais récupérer la partie gauche de strchr, y’a t’il une solution ?
+0
-0