Skip to content

Instantly share code, notes, and snippets.

View vikramj74's full-sized avatar
🎯
Focusing

Vikram Jaswal vikramj74

🎯
Focusing
View GitHub Profile
@vikramj74
vikramj74 / string_helpers.go
Created December 28, 2017 07:00
Clip string from beginning and end : golang
package string_helpers
import (
"fmt"
)
func ClipStringFromEnds(s string, n int) string {
return s[n : len(s)-n]
}