# README
Regex Examples
Find substring between
package main
import (
"fmt"
"github.com/D3Ext/maldev/src/regex"
)
func main(){
matches := regex.FindSubstringBetween("Look: ABC some example test ABC", "A", "C")
fmt.Println(matches) // Output: [B B]
}
# Functions
No description provided by the author