mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-03-01 01:20:49 +03:00
10 lines
226 B
Go
10 lines
226 B
Go
![]() |
package common
|
||
|
|
||
|
import "sort"
|
||
|
|
||
|
func IsSubString(target string, str_array []string) bool {
|
||
|
sort.Strings(str_array)
|
||
|
index := sort.SearchStrings(str_array, target)
|
||
|
return index < len(str_array) && str_array[index] == target
|
||
|
}
|