c*******h 发帖数: 1096 | 1 不过不是对string用的,而是对file stream用的
getdelim只能有一个固定的delimiter,不够用啊。想要像strtok那样
可以指定一堆delimiter的。有这样的函数不? |
M**u 发帖数: 10158 | 2 对string stream的,这样的函数都没有把。。。
【在 c*******h 的大作中提到】 : 不过不是对string用的,而是对file stream用的 : getdelim只能有一个固定的delimiter,不够用啊。想要像strtok那样 : 可以指定一堆delimiter的。有这样的函数不?
|
t****t 发帖数: 6806 | 3 generate istream_iterator and use find_first_of() in . depending
on your requirement, it may or may not be perfect.
【在 c*******h 的大作中提到】 : 不过不是对string用的,而是对file stream用的 : getdelim只能有一个固定的delimiter,不够用啊。想要像strtok那样 : 可以指定一堆delimiter的。有这样的函数不?
|
t****t 发帖数: 6806 | 4 for string, you can use basic_string<>::find_first_of()
【在 M**u 的大作中提到】 : 对string stream的,这样的函数都没有把。。。
|
M**u 发帖数: 10158 | 5 how about stringstream...
【在 t****t 的大作中提到】 : for string, you can use basic_string<>::find_first_of()
|
t****t 发帖数: 6806 | 6 i said you can generate istream_iterator and use find_first_of() in <
algorithm>
【在 M**u 的大作中提到】 : how about stringstream...
|