Contents:

 

 

Introduction


News blog


What is Servoy?


Getting Started


Comparison Servoy/VFP


Performance


How-To's

 

Code Reference

 

VFP2Servoy Toolkit

 

 

Contact / feedback

 

 

 

 

 

 

 

 

 

 

 

 

 

 

STUFF() - globals.STUFF()



Returns a character string created by replacing a specified number of characters in a character expression with another character expression.

 

VFP code example


? STUFF("Hello World", 7, 0, "there ")       && returns: Hello there World
? STUFF("Hello there World", 7, 6, "in my ") && returns: Hello in my World
? STUFF("Hello there World", 7, 6, "")       && returns: Hello World

 

Servoy code example


globals.STUFF("Hello World", 7, 0, "there ");// returns: Hello there World
globals.STUFF("Hello World", 7, 6, "in my ");// returns: Hello there World
globals.STUFF("Hello World", 7, 6, "");      // returns: Hello World


Note: STUFF() is a function of the VFP2Servoy Toolkit

 

 

External resources:

 

vfp plugin

 

ServoyWorld 2012 pics

 

Official Servoy website

 

Ken Levy on Servoy

 

Servoy info

 

Servoy Forum

 

Servoy Documentation

 

VisualFoxpro.com © 2010-2012 • All rights reserved • Contact: info@visualfoxpro.com