How to find if string endswith another string c++
|
|
If you want to ignore '\n' and '\r' at the end of the string, you could modify jcs' solution as follows:
|
||
|
|
|
|
The
|
||||||
|
|
|
you can use string::rfind The full Example based on comments:
|
||||||||
|
|
|
Simply compare the last n characters using
|
||||||||||
|
|
|
Let Or use Ex:
|
||||
|
