package
0.1.5
Repository: https://github.com/d3ext/maldev.git
Documentation: pkg.go.dev

# 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