-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
There is a collection of strings because a TXT resource record can be used to store multiple values. In your example, all values are in quotes so the full text will be in the first element of the collection I guess. Different systems then use different mechanisms to separate key/values. You'll have to parse the string yourself if you want to analyse any of the data. |
Beta Was this translation helpful? Give feedback.
-
I also have a problem with this kind of query. When I try to get and analyze an SPF record, it reports an array of non-sense strings. How can I get a whole SPF "as is"? thanks |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
There is a collection of strings because a TXT resource record can be used to store multiple values.
If quotes are used, the whole value within the quotes is treated as one value (and will produce only one element in the collection); e.g.
"some text with spaces"
.The same value without quotes would be 4 different values and would create a list of 4 strings.
In your example, all values are in quotes so the full text will be in the first element of the collection I guess.
Different systems then use different mechanisms to separate key/values. You'll have to parse the string yourself if you want to analyse any of the data.