Example #1
0
 /**
  * Transforms a string according to a specified ICU general transform.
  *
  * See [General Transforms](http://userguide.icu-project.org/transforms/general) in the ICU User Guide for the
  * information on what you can do with ICU general transforms.
  *
  * @param  string $transform The transform.
  *
  * @return CUStringObject The transformed string.
  */
 public function transform($transform)
 {
     return CUString::transform($this, $transform);
 }