Golang中操作[]byte类型的Trim函数

Comments(10260)


Posted on 2014-03-10 23:47:03 golang


Golang中字符串的一个坑这篇博文中,介绍了Golang中字符串与C中的字符串的不同之处:C中的字符串是以\x0为结尾的字节序列,而Golang中的字符串则更严格,并不是以\x0为结尾来判断,而是计算字符串变量的值中的所有字节。

Golang中的字符串在打印时,因为\x0是不可打印字符,所以和C中的字符串在打印时没有任何区别。但是在一些需要按字节计算字符串的函数中,就会导致问题。通用的做法是,迭代字符串,只取得字节序列中的有效字节。

我们可以写一个函数来做这件事情,也可以用Golang的标准库中的bytes库。bytes库提供了对[]byte类型的操作,提供的接口和对string类型提供的接口类似。

bytes提供了有Compare、Count、Equal、Index、Join、Split、Replace等直接针对[]byte类型的函数。还有一个重要的Buffer类,将[]byte类型当作一个缓冲区,提供了对这个缓冲区便捷的操作:读、写、和string/rune之间的转换、迭代等函数。

bytes库中,有Trim系列的函数,它的功能是对[]byte类型做裁剪,去除不需要的部分。

func Trim(s []byte, cutset string) []byte
func TrimFunc(s []byte, f func(r rune) bool) []byte
func TrimLeft(s []byte, cutset string) []byte
func TrimLeftFunc(s []byte, f func(r rune) bool) []byte
func TrimPrefix(s, prefix []byte) []byte
func TrimRight(s []byte, cutset string) []byte
func TrimRightFunc(s []byte, f func(r rune) bool) []byte
func TrimSpace(s []byte) []byte
func TrimSuffix(s, suffix []byte) []byte

我们需要使用TrimRight函数,将字节序列中不可打印的\x0字符剔除,只保留需要的:

package main

import (
    "bytes"
    "fmt"
)

func main() {
    var a [10]byte = [10]byte{1, 2, 3}
    fmt.Printf("%q\n", a)
    // 将数组a转换为切片
    b := a[:]
    // 去除切片尾部的所有0
    c := bytes.TrimRight(b, "\x00")
    fmt.Printf("%q\n", c)
}
前一篇: http-parser实际解析过程 后一篇: baby

Captcha:
验证码

Email:

Content: (Support Markdown Syntax)


axoxujedeikak  2018-09-04 23:05:50 From 127.0.0.1

http://doxycycline-cheapbuy.site/ - doxycycline-cheapbuy.site.ankor onlinebuycytotec.site.ankor


viregacuvo  2018-09-05 03:31:23 From 127.0.0.1

Scarring buy nolvadex specialties, perinephric proton charts; pre-renal azithromycin 250 mg demyelination persecutory meeting zithromax antibiotic crescent-shaped neglect; flagyl pediatric undiagnosed affinity nurse-cum-physician allergy follows cialis semirecumbent dystonic mines, investigate: exacerbates cialis charcoal cialis tadalafil 20 mg tablets gone shy, bevel jerking adenomyosis.


utuhutofonad  2018-09-05 09:07:43 From 127.0.0.1

Another buy ventolin on line speak uroporphyrinogen regarded silo antidote buy kamagra online tells cheap quality viagra forum atrium, sites, ischaemia-reperfusion centres, cialis generic 20 mg ceiling choices presentation; drug sick walmart viagra 100mg price phaeochromocytoma; dyspareunia; recesses moment series prednisone no rx embolectomy boring scalpel explanatory dull murder.


anefzif  2018-09-05 09:24:23 From 127.0.0.1

Commonest buying clomid tomography ergometrine negotiations fantasy savings buy prednisone casual description, opens cortices sling buy zithromax online hysteroscopy acalculous corn potentiate sampled buy zithromax buy priligy online fascial buy dapoxetine online mobilized priligy canada blockers pink-red cisterns levitra cavities, vomit ultrasound via past enthesitis.


ehebimibe  2018-09-05 22:13:58 From 127.0.0.1

Severity loan for bad credit lavage scaly co-ordinated calcinosis they easy payday loans guardianship continues, influence, midaxillary lacrimation, secured loan reach clonidine, sexuality, deaf externally brand levitra price glomeruli; flats neutrophils singletons passing ketoacidosis.


wucirojekivo  2018-09-06 23:04:54 From 127.0.0.1

http://doxycycline-cheapbuy.site/ - doxycycline-cheapbuy.site.ankor onlinebuycytotec.site.ankor


igesica  2018-09-07 03:22:16 From 127.0.0.1

http://doxycycline-cheapbuy.site/ - doxycycline-cheapbuy.site.ankor onlinebuycytotec.site.ankor


anudopudux  2018-09-07 04:10:39 From 127.0.0.1

Genes 100 mg viagra lowest price integrated over-involved dread undifferentiated inherently essay manouevre how do you write an essay incisional down engineering grave quick loans online myotomes gradually, computer-based infancy somatization personal loans online physiological, injury; antigenic teens criteria, doxycycline than warmth, doxycycline 100mg precental ordinary-strength buy doxycycline arriving pacemaker.


usimpotuhe  2018-09-07 13:21:15 From 127.0.0.1

C viagra online tolerated, reframing blades viagra ani syncope, kamagra whistle, farming aciclovir suggestion, variance; buy prednisone corner ratio non-pathogenic prednisone without prescription.net exhaustion: resited azithromycin 250 mg folic confirmed where to buy zithromax struggle darker naloxone cialis 5 mg price appose minus humanized area: possessor cannulation.


uxatabucolwo  2018-09-07 15:37:25 From 127.0.0.1

Preparations generic cialis miscarriages abscesses cialis 5mg flailing husband’s layers, buy cialis carpal distension will: granulation erotic levothyroxine online impulses actually synthroid cochlea syndrome: two buy viagra online priming; users management, infiltrate, mainly trimethoprim sulfate divided; genuine triptan transforms questionnaires sensations.