{@Whitespace}
ID: 179
See: {@Whitespace}, Introduction
using uCalcSoftware;
var uc = new uCalc();
var t = uc.NewTransformer();
t.FromTo("{@Whitespace}", ",");
Console.WriteLine(t.Transform("This is a 'small test' about ' whitespace ' tokens."));
This,is,a,'small test',about,' whitespace ',tokens. using uCalcSoftware; var uc = new uCalc(); var t = uc.NewTransformer(); t.FromTo("{@Whitespace}", ","); Console.WriteLine(t.Transform("This is a 'small test' about ' whitespace ' tokens."));
#include
#include "uCalc.h"
using namespace std;
using namespace uCalcSoftware;
int main() {
uCalc uc;
auto t = uc.NewTransformer();
t.FromTo("{@Whitespace}", ",");
cout << t.Transform("This is a 'small test' about ' whitespace ' tokens.") << endl;
}
This,is,a,'small test',about,' whitespace ',tokens. #include <iostream> #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; auto t = uc.NewTransformer(); t.FromTo("{@Whitespace}", ","); cout << t.Transform("This is a 'small test' about ' whitespace ' tokens.") << endl; }
Imports System
Imports uCalcSoftware
Public Module Program
Public Sub Main()
Dim uc As New uCalc()
Dim t = uc.NewTransformer()
t.FromTo("{@Whitespace}", ",")
Console.WriteLine(t.Transform("This is a 'small test' about ' whitespace ' tokens."))
End Sub
End Module
This,is,a,'small test',about,' whitespace ',tokens. Imports System Imports uCalcSoftware Public Module Program Public Sub Main() Dim uc As New uCalc() Dim t = uc.NewTransformer() t.FromTo("{@Whitespace}", ",") Console.WriteLine(t.Transform("This is a 'small test' about ' whitespace ' tokens.")) End Sub End Module