kstring
kstring property type¶
kstirng
datatype is special datatype in kitsune language.
- kstring is unique datatype of the kitsune language
- using kstring you can store string and kitsune will dynamically extract meaningful keyworeds out of the string stored.
- the keyword extraction of the text is performed dynamically at the time of the text insertion or updating of kstring data type
- keywords extracted from the kstring can be used for better search engine optimization
- kstring datatype has two property (
text
andkeywords
).text
is type of str andkeywords
is type of [array]
Example¶
coffeeshop(baseclass) language properties
Type | Name |
---|---|
str | name |
kstring | description |
kstring (system class)
Type | Name |
---|---|
str | text |
array(string) | keywords |
1 2 3 4 5 6 7 8 | <span> <!-- prints the description text that user added fromt he k-admin --> <div></div> <!-- repeat through all the keywords generated automatilly by the kitsune language --> <ul k-repeat="System.Exception: No matching Action found for the expression. at KitsuneSyntaxParser.Models.ParseTress.Parse(Node node)"> <li></li> </ul> </span> |