잠시만 기다려 주세요

     '입만 나불거리고 행동하지 않는 야당을 규탄한다.'
전체검색 :  
이번주 로또 및 연금번호 발생!!   |  HOME   |  여기는?   |  바다물때표   |  알림 (16)  |  여러가지 팁 (1056)  |  추천 및 재미 (155)  |  자료실 (22)  |  
시사, 이슈, 칼럼, 평론, 비평 (606)  |  끄적거림 (129)  |  문예 창작 (705)  |  바람 따라 (69)  |  시나리오 (760)  |  드라마 대본 (248)  |  
살인!


    golang

golang - golang 정규식, Regular Expressions 사용하기
이 름 : 바다아이   |   조회수 : 9021         짧은 주소 : https://www.bada-ie.com/su/?131591819784
// Go offers built-in support for [regular expressions](http://en.wikipedia.org/wiki/Regular_expression).
// Here are some examples of  common regexp-related tasks
// in Go.

package main

import "bytes"
import "fmt"
import "regexp"

func main() {

	// This tests whether a pattern matches a string.
	match, _ := regexp.MatchString("p([a-z]+)ch", "peach")
	fmt.Println(match)

	// Above we used a string pattern directly, but for
	// other regexp tasks you'll need to `Compile` an
	// optimized `Regexp` struct.
	r, _ := regexp.Compile("p([a-z]+)ch")

	// Many methods are available on these structs. Here's
	// a match test like we saw earlier.
	fmt.Println(r.MatchString("peach"))

	// This finds the match for the regexp.
	fmt.Println(r.FindString("peach punch"))

	// This also finds the first match but returns the
	// start and end indexes for the match instead of the
	// matching text.
	fmt.Println(r.FindStringIndex("peach punch"))

	// The `Submatch` variants include information about
	// both the whole-pattern matches and the submatches
	// within those matches. For example this will return
	// information for both `p([a-z]+)ch` and `([a-z]+)`.
	fmt.Println(r.FindStringSubmatch("peach punch"))

	// Similarly this will return information about the
	// indexes of matches and submatches.
	fmt.Println(r.FindStringSubmatchIndex("peach punch"))

	// The `All` variants of these functions apply to all
	// matches in the input, not just the first. For
	// example to find all matches for a regexp.
	fmt.Println(r.FindAllString("peach punch pinch", -1))

	// These `All` variants are available for the other
	// functions we saw above as well.
	fmt.Println(r.FindAllStringSubmatchIndex(
		"peach punch pinch", -1))

	// Providing a non-negative integer as the second
	// argument to these functions will limit the number
	// of matches.
	fmt.Println(r.FindAllString("peach punch pinch", 2))

	// Our examples above had string arguments and used
	// names like `MatchString`. We can also provide
	// `[]byte` arguments and drop `String` from the
	// function name.
	fmt.Println(r.Match([]byte("peach")))

	// When creating constants with regular expressions
	// you can use the `MustCompile` variation of
	// `Compile`. A plain `Compile` won't work for
	// constants because it has 2 return values.
	r = regexp.MustCompile("p([a-z]+)ch")
	fmt.Println(r)

	// The `regexp` package can also be used to replace
	// subsets of strings with other values.
	fmt.Println(r.ReplaceAllString("a peach", "<fruit>"))

	// The `Func` variant allows you to transform matched
	// text with a given function.
	in := []byte("a peach")
	out := r.ReplaceAllFunc(in, bytes.ToUpper)
	fmt.Println(string(out))
}


결과

true
true
peach
[0 5]
[peach ea]
[0 5 1 3]
[peach punch pinch]
[[0 5 1 3] [6 11 7 9] [12 17 13 15]]
[peach punch]
true
p([a-z]+)ch
a <fruit>
a PEACH


출처 : https://gobyexample.com/regular-expressions
| |





      1 page / 6 page
번 호 카테고리 제 목 이름 조회수
179 golang golang , ... 바다아이 1732
178 golang golang , map . 바다아이 1336
177 golang Golang (, , data ) , ... 바다아이 1344
176 golang golang sort ... 바다아이 1573
175 golang golang html.EscapeString html.UnescapeString input value ... 바다아이 1703
174 golang golang go.mod go.sum . GOPATH SRC not module, 1.16 . 바다아이 4976
173 golang go 1.16 ... is not in GOROOT.. GOPATH .... . 바다아이 5882
172 golang , String Formatting 바다아이 7514
171 golang rand.Intn , random, , . 바다아이 6973
170 golang golang ... 바다아이 10062
169 golang golang gopath, goroot .. golang 바다아이 7651
168 golang golang ... Force download file example 바다아이 9434
167 golang golang , , cpu, memory, disk 바다아이 10732
166 golang golang , ... GOOS, GOARCH 바다아이 8510
165 golang golang checkbox ... 바다아이 8258
164 golang golang , , http .... 바다아이 8030
163 golang golang nil , nil , nil ... 바다아이 8377
162 golang 2 golang, go , .... golang .... 바다아이 11246
161 golang golang postgresql, mysql, mariadb ... ` Grave () .. .. 바다아이 8562
160 golang golang postgresql mysql, mariadb scan , null .. 바다아이 8707
159 golang golang , iconv 바다아이 11499
158 golang golang quote escape, unquote 바다아이 8907
157 golang golang , http errorLog , , ... 바다아이 9009
156 golang golang interface , 바다아이 8487
155 golang golang struct .... 바다아이 9153
154 golang golang map map , 바다아이 8679
153 golang golang map .... .... 바다아이 8196
152 golang golang slice copy 바다아이 8297
151 golang golang goto 바다아이 9158
150 golang golang slice sort , int, string, float64 바다아이 8639
| |









Copyright ⓒ 2001.12. bada-ie.com. All rights reserved.
이 사이트는 리눅스에서 firefox 기준으로 작성되었습니다. 기타 브라우저에서는 다르게 보일 수 있습니다.
[ Ubuntu + GoLang + PostgreSQL + Mariadb ]
서버위치 : 오라클 클라우드 춘천  실행시간 : 0.05514
to webmaster... gogo sea. gogo sea.