User Tools

Site Tools


cookbooks:devel:transformations

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
cookbooks:devel:transformations [2020/08/31 12:17]
miconda [{uri.suri}]
cookbooks:devel:transformations [2021/02/15 09:32]
miconda [{s.count,c}]
Line 375: Line 375:
  
 <code c> <code c>
-abababa"{s.count,a}+"abababa"{s.count,a}
 # will return 4 # will return 4
 </code> </code>
  
 +==== {s.after,x} ====
  
 +Return the part of the string after the character **x**. If the character **x** is not found, it returns empty string.
 +
 +<code c>
 +"abcdef"{s.after,c}
 +# will return "def"
 +</code>
 +
 +==== {s.before,x} ====
 +
 +Return the part of the string before the character **x**. If the character **x** is not found, it returns the entire input string.
 +
 +<code c>
 +"abcdef"{s.before,c}
 +# will return "ab"
 +</code>
 ==== {s.urlencode.param} ==== ==== {s.urlencode.param} ====
  
cookbooks/devel/transformations.txt ยท Last modified: 2022/04/08 18:08 by miconda