| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- // Copyright 2019 Yunion
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package stringutils2
- import (
- "fmt"
- "strconv"
- "strings"
- )
- const RepChar = '#'
- const RandomChar = '?'
- // name##
- // name##9#
- func ParseNamePattern2(name string) (string, string, int, int, byte) {
- var match string
- var pattern string
- var patternLen int
- var offset int
- var charType byte
- start := strings.IndexByte(name, RepChar)
- if start >= 0 {
- end := start + 1
- for end < len(name) && name[end] == RepChar {
- end += 1
- }
- patternLen = end - start
- nend := strings.IndexByte(name[end:], RepChar)
- if nend > 0 {
- if oi, err := strconv.ParseInt(name[end:end+nend], 10, 64); err == nil {
- offset = int(oi)
- }
- end = end + nend + 1
- }
- match = fmt.Sprintf("%s%%%s", name[:start], name[end:])
- pattern = fmt.Sprintf("%s%%0%dd%s", name[:start], patternLen, name[end:])
- charType = RepChar
- } else {
- start := strings.IndexByte(name, RandomChar)
- if start >= 0 {
- end := start + 1
- for end < len(name) && name[end] == RandomChar {
- end += 1
- }
- patternLen = end - start
- match = fmt.Sprintf("%s%%%s", name[:start], name[end:])
- pattern = fmt.Sprintf("%s%%s%s", name[:start], name[end:])
- charType = RandomChar
- } else {
- match = fmt.Sprintf("%s-%%", name)
- pattern = fmt.Sprintf("%s-%%d", name)
- }
- }
- return match, pattern, patternLen, offset, charType
- }
|