473,387 Members | 1,532 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Dequote a string, unescaping escaped quotes

Hi,

I am trying to write a C function which will dequote the string in a
char * variable, and unescape any escaped quotes, so that, for example:

"hello"

would become:

hello

and:

"\"hello\""

would become:

"hello"

much in the same way as char *argv command-line arguments are treated
when passed to function main.

Please can you help.

Regards,
Jonny
Dec 19 '05 #1
7 9358
Jonny wrote:
I am trying to write a C function which will dequote the string in a
char * variable, and unescape any escaped quotes, so that, for example:

"hello"

would become:

hello

and:

"\"hello\""

would become:

"hello"


Dear Jonny!

I think the best way is to go through the string character-by-character;
then you simply ignore the opening quote und continue until you find its
contra-piece.

Inside the loop you copy every character which isn't a quote nor a
backslash to your output; if you find a backslash, read the next
character and output it, regardless of its meaning.

Maybe you might want some further checks inside that, but in general
this should implement what you expect.

Example code (without error-checking or something like that):

void unescape(const char* in, char* out)
{
// Opening quote expected.
assert(*in=='\"');

// Loop until closing quote is found.
for(++in; *in!='\"'; ++in)
{

// Character to copy?
if(*in!='\\')
{
*(out++)=*in;
continue;
}

// No. Copy next one.
*(out++)=*(++in);
}
}

Yours,
Daniel
Dec 19 '05 #2
Daniel Kraft wrote:
<snip>
Example code (without error-checking or something like that):

void unescape(const char* in, char* out)
{
// Opening quote expected.
C99 style comments can be misleading on usenet.
assert(*in=='\"');
Note that the assert macro should be used to make debugging
easier and not to catch errors, let alone perform error handling.
Example:
if (*in != '\"') {
/* You can issue an error message if wished
fprintf(stderr, "useful error message pointing to line,"
" function, and file\n");
* maybe implemented by macro
*/
return;
}
This is quite enough. If you feel sure that you need to abort
the program on an error, use
if (*in != '\"') {
assert(0 && "Unexpected character, expected \'\"\'");
return;
}
That works even if _NDEBUG is defined i.e. when assert does
nothing.
// Loop until closing quote is found.
for(++in; *in!='\"'; ++in)
{

// Character to copy?
if(*in!='\\')
{
*(out++)=*in;
continue;
}

// No. Copy next one.
*(out++)=*(++in);
An if/else construction may be clearer than if/continue.
Note that the above will also "ruin" explicitly wanted
backslashes.
}
}

Yours,
Daniel

--
E-Mail: Mine is an /at/ gmx /dot/ de address.
Dec 19 '05 #3
Jonny wrote:
Hi,

I am trying to write a C function which will dequote the string in a
char * variable, and unescape any escaped quotes, so that, for example:

"hello"

would become:

hello

and:

"\"hello\""

would become:

"hello"

much in the same way as char *argv command-line arguments are treated
when passed to function main.


Do you want to copy the source string to a destination string
or replace everything in the source string? You can do both with
one function but be sure to think it through before.

Finding:
Just use strchr() to find quotes. If the number of backslashes
immediately preceding the quote is odd, you can 'replace' \" by ",
otherwise you replace " by nothing.
Note that you must not run to a position before the beginning
of the string, so use strrchr() to count backwards or take
appropriate precautions. Restart strchr() and your counting such
that you do not change already changed parts of the string.

Bring your best shot at it for us to see and we will help you
by pointing out problems and answering C questions.

Cheers
Michael
--
E-Mail: Mine is an /at/ gmx /dot/ de address.
Dec 19 '05 #4
Jonny wrote:
Hi,

I am trying to write a C function which will dequote the string in a
char * variable, and unescape any escaped quotes, so that, for example:
<snip examples>

Then go ahead and write it.
Please can you help.


Yes, you've missed off a semi-colon on line 42.

In other words, if you want help with your code then post it together
with information about what specific problems you have with it. We are
not going to write your code for you.
--
Flash Gordon
Living in interesting times.
Although my email address says spam, it is real and I read it.
Dec 19 '05 #5
Michael Mair <Mi**********@invalid.invalid> wrote:
This is quite enough. If you feel sure that you need to abort
the program on an error, use
if (*in != '\"') {
assert(0 && "Unexpected character, expected \'\"\'");
return;
I suspect that OP will want

exit( EXIT_FAILURE );

if he does in fact want to abort the program on an error in the
presence of _NDEBUG.
}


--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
Dec 19 '05 #6
Jonny <ww******@ntlworld.com> writes:
I am trying to write a C function which will dequote the string in a
char * variable, and unescape any escaped quotes, so that, for example:

"hello"

would become:

hello

and:

"\"hello\""

would become:

"hello"

much in the same way as char *argv command-line arguments are treated
when passed to function main.


You'll need to define the problem more precisely. The language
doesn't define any particular treatment of command-line arguments;
they're just made available to the program by some system-specific
means.

If you were on a Unix-like system, I'd say that you're probably trying
to duplicate what the shell does with command-line arguments before
invoking a program; for example

echo "\"hello\""

translates each \" to " and drops the outer " characters. This is
often very similar to the way string literals are treated within a C
program, but it's not identical. It can also vary from one shell to
another, and even within some shells depending on what options are
specified.

That's just one example of what you might be talking about. It's
likely to be different on other operating systems.

Once you've defined the problem, try implementing a solution in C. If
you have problems with it, post here again and we can try to help.

If this is a homework assignment, please say so.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Dec 19 '05 #7
I wrote:
I am trying to write a C function which will dequote the string in a
char * variable, and unescape any escaped quotes, so that, for example:

"hello"

would become:

hello

and:

"\"hello\""

would become:

"hello"

much in the same way as char *argv command-line arguments are treated
when passed to function main.

Please can you help.


Many thanks to you all for your help and advice. I wasn't sure where to
start, but you have given me enough information to have a go at this.

Regards,
Jonny
Dec 20 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Julia Briggs | last post by:
Hello, trying to create logic tests against a string allowing someone to enter a certain character once or twice into a form consecutively, but not twice seperated between other characters.... ...
1
by: Yodai | last post by:
Hi all... I got this script where I have to declare a string thats as wide as a whole webpage. The problem is that it takes several lines to finish the whole string and, when I try to load it, I...
3
by: Ryan Folstad | last post by:
Hello i have a problem with c# string handling. Hopefully someone can explain what im doing wrong. this code: string windowsdir = "c:\\windows"; string installdir ="c:\\install"; string path=...
12
by: Jeff S | last post by:
In a VB.NET code behind module, I build a string for a link that points to a JavaScript function. The two lines of code below show what is relevant. PopupLink = "javascript:PopUpWindow(" &...
2
by: Vance Kessler | last post by:
We are trying write a new ASP.NET page to work with an existing stateless ASP application. The ASP application creates a cookie and of course stores the cookie values as escaped strings (using the...
4
by: Robert | last post by:
Hello. I have tried to remove the char "\" from a string that I am building in codebehind. to be used in a script tag. I have tried adding (char)34 to the string instead of the escape...
1
by: Mark Rae | last post by:
Hi folks, Apologies - am having a bit of a "senior moment"... Is there a way to convert a string containing escaped characters into a verbatim string literal? I.e. converting something like...
3
by: John Nagle | last post by:
Here's a URL from a link on the home page of a major company. <a href="/adsk/servlet/index?siteID=123112&amp;id=1860142">About Us</a> Yes, that "&amp;" is in the source text of the page. This is, in...
4
by: Michael Yanowitz | last post by:
Hello: If I have a long string (such as a Python file). I search for a sub-string in that string and find it. Is there a way to determine if that found sub-string is inside single-quotes or...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.