Say I have the following two ordinary strings:
a = "A backslash (\) can mess a string up"
b = "But binaries are nice"
Say I want to convert them to raw/binary strings
raw_a = some_function(a)
binary_b = some_binary_function(b)
is that doable?
I am aware that you can declare them as such when defined in this example, but that is not the point/issue.