本站源代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
255B

  1. package denco
  2. // NextSeparator returns an index of next separator in path.
  3. func NextSeparator(path string, start int) int {
  4. for start < len(path) {
  5. if c := path[start]; c == '/' || c == TerminationCharacter {
  6. break
  7. }
  8. start++
  9. }
  10. return start
  11. }
上海开阖软件有限公司 沪ICP备12045867号-1