Skip to content

Instantly share code, notes, and snippets.

@DexterHaslem
Created January 26, 2016 02:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DexterHaslem/13691205884015e92a22 to your computer and use it in GitHub Desktop.
Save DexterHaslem/13691205884015e92a22 to your computer and use it in GitHub Desktop.
soh = Char(0x01)
function fix_parse_split(str)
ret = []
for chunk in split(testStr, soh)
if length(chunk) > 0
push!(ret, chunk)
end
end
return ret
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment