I have string 'a\\\' b'
, i need make algorithm which will convert this string to string 'a' b'
'a\\\' b'
= >'a\\' b'
=>'a\' b'
= >'a' b'
How i can make it? Maybe c# have a method which can check , is char contains verbatim symbol or not?
I have string 'a\\\' b'
, i need make algorithm which will convert this string to string 'a' b'
'a\\\' b'
= > 'a\\' b'
=> 'a\' b'
= > 'a' b'
How i can make it? Maybe c# have a method which can check , is char contains verbatim symbol or not?Copyright © 2021 Jogjafile Inc.
You could just replace the backslashes with an empty string.