Question

I know that in C#, we can use operator for strings when we need to use special characters as letters inside of it. It's like %"!@#*&#Y!@#*&!@#\123". Does anyone know how we can do that on Ruby?

Was it helpful?

Solution

In Ruby, you can use ' or " as your string delimiter. The former doesn't do any special character handling within the string, not even things like \n; the latter does.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top