'How to split '_' with one more any one character in golang?

How to split '_' with any one character?

for Examples,

var one = 6221c62c67bc2a98ec6f713b_h32 
-> strings.Split(one, "_h")

var one = 12345c62c67bc2a98ec6f723c_c32
-> strings.Split(one, "_c")

var one = 12345c62c67bc2a98ec6f723c_s32
-> strings.Split(one, "_s")

How to combine these? (use regex? or any idea)

strings.Split(one, "_??")
go


Solution 1:[1]

You can use string.Replace:

strings.Replace("6221c62c67bc2a98ec6f713b_h32", "_h", " ", 1)

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 frontsideup