algorithms-go/leetcode/图解数据结构/02.替换空格/main.go
2021-03-31 10:12:29 +08:00

34 lines
619 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* @Description:
* @Version: 2.0
* @Autor: zhuyijun
* @Date: 2021-03-30 22:22:28
* @LastEditors: zhuyijun
* @LastEditTime: 2021-03-30 22:45:54
*/
package main
import "fmt"
/**
剑指 Offer 05. 替换空格
请实现一个函数,把字符串 s 中的每个空格替换成"%20"。
输入s = "We are happy."
输出:"We%20are%20happy."
*/
func replaceSpace(s string) string {
var temp string
h := []byte(s)
for _,i :=range h{
if " " == string(i) {
temp += "%20"
}else{
temp += string(i)
}
}
return temp
}
func main() {
fmt.Print(replaceSpace("We are happy."))
}