mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
Add substring funcs
This commit is contained in:
parent
6b313ff9ef
commit
7868451c90
1 changed files with 35 additions and 0 deletions
35
common/string.go
Normal file
35
common/string.go
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
package common
|
||||||
|
|
||||||
|
import "strings"
|
||||||
|
|
||||||
|
func SubstringAfter(s string, substr string) string {
|
||||||
|
index := strings.Index(s, substr)
|
||||||
|
if index == -1 {
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
return s[index+len(substr):]
|
||||||
|
}
|
||||||
|
|
||||||
|
func SubstringAfterLast(s string, substr string) string {
|
||||||
|
index := strings.LastIndex(s, substr)
|
||||||
|
if index == -1 {
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
return s[index+len(substr):]
|
||||||
|
}
|
||||||
|
|
||||||
|
func SubstringBefore(s string, substr string) string {
|
||||||
|
index := strings.Index(s, substr)
|
||||||
|
if index == -1 {
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
return s[:index]
|
||||||
|
}
|
||||||
|
|
||||||
|
func SubstringBeforeLast(s string, substr string) string {
|
||||||
|
index := strings.LastIndex(s, substr)
|
||||||
|
if index == -1 {
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
return s[:index]
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue