Skip to content

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 and keywords). text is type of str and keywords is type of [array]

Example

coffeeshop(baseclass) language properties

TypeName
strname
kstringdescription

kstring (system class)

TypeName
strtext
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>