Click here to Skip to main content
15,886,137 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have a path like this

C:\Users\Desktop\new3oct\31oct\Project\Project\\bin\\logsgs"

By programming i have to convert it to this,should i use strtok? Not getting the logic,please tell

"C:\Users\Desktop\new3oct\31oct\Project\bin\\logsgs"
Posted
Comments
chaau 3-Nov-12 18:20pm    
you have specified many tags: C, C++, Visual Studio. What technology are you planning to use? strtok is C

1 solution

You didn't specify if you need to suppress all duplicate words or just the consecutive duplicate words.

Assuming the latter option, you need to split the path to get the words between the slashes. You can do this with strtok, but scanning the string yourself is not much harder: search for a backslash and if you find one, continue the search for the next non-backslash character.

When you search a new word, make sure to keep a trace of the previous you found. Then compare both. Copy the words and backslashes as you go, except in the case of a duplicate.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900