Characters not valid in data

I found that if I have spaces or commas in my data, there are issues storing the data. Is there a full list of the characters I should not use?

Are you talking about IRIs? Would disabling strict parsing help? IRIs are defined formally in RFC 3987.

Jess

Here's how I summarized the rules in our help docs for naming IRIs:

"All characters except < > " space { } | \ ^ ` are allowed. Numbers can be used but not as the first character in the name."

From reading that RFC it looked like these were not allowed:

"+", "-", "#", "$", "%", ",", ".", ":", " "

Is that not correct?

It can get surprisingly complicated. This is a really good post on the subject http://www.talisman.org/~erlkonig/misc/lunatech^what-every-webdev-must-know-about-url-encoding/ specifically the sections " The reserved characters are different for each part" and " The reserved characters are not what you think they are"

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.