Go FindAllIndex()

Jmnote (토론 | 기여)님의 2023년 1월 20일 (금) 15:28 판

1 개요

Go FindAllIndex()
Go regexp.FindAllIndex()
package main

import (
	"fmt"
	"regexp"
)

func main() {
	content := []byte("London")
	re := regexp.MustCompile(`o.`)
	fmt.Println(re.FindAllIndex(content, 1))
	fmt.Println(re.FindAllIndex(content, -1))
}
package main

import (
	"fmt"
	"regexp"
)

func main() {
	content := []byte("aaaabbbb")
	re := regexp.MustCompile(`aa.*bb`)
	fmt.Println(re.FindAllIndex(content, 1))
	fmt.Println(re.FindAllIndex(content, -1))
}

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}