1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
find_first_of("a")
find_last_of("a")
find("a")
rfind("a")
find_first_of("\n")
find_last_of("\n")
find("\n")
rfind("\n")
find_first_of("\t")
find_last_of("\t")
find("\t")
rfind("\t")
find_first_of("\\")
find_last_of("\\")
find("\\")
rfind("\\")
find_first_of("\"")
find_last_of("\"")
find("\"")
rfind("\"")
find_first_of("a", 1)
find_last_of("a", 1)
find("a", 1)
rfind("a", 1)
find_first_of('a')
find_first_of('\n')
find_first_of('\\')
find_first_of('a', 1)
find_last_of('a')
find_last_of('\n')
find_last_of('\\')
find_last_of('a', 1)
|