I need to check whether an std:string begins with "xyz". How do I do it without searching through the whole string or creating temporary strings with substr().
Thanks.
|
2
|
|
|
|
|
|
I would use compare method:
|
||||||||||
|
|
|
|
||
|
|
|
|
I am really fed up when people demands : " I want to fly up to London but I don't want to use an airplane, neither a rocket and I even don't want to be transformed into a bird." When I ask them "Any particular reason?", they say: "Airplane will burn a lot of fuel and cause pollution, the rocket is too fast for me and I don't want to loose my human-ship". These are the symptoms of pre-mature optimization and as Donald Knuth beautifully puts up
So, in a nutshell, please tell us "What you want to achieve" and not "How you want to achieve". There is nothing wrong in using substr and string comparisons, so why not use it. |
||||
|
|
|
Look to the Boost's String Algo library, that has a number of useful functions, such as starts_with, istart_with (case insensitive), etc. If you want to use only part of boost libraries in your project, then you can use bcp utility to copy only needed files |
||
|
|
|
|
I feel I'm not fully understanding your question. It looks as though it should be trivial:
This only looks at (at most) the first three characters. The generalisation for a string which is unknown at compile time would require you to replace the above with a loop:
|
||||
|