blob: d2690835780d4fdd9d5405947cd6f81bb0537992 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#include "functionreplace.h"
FunctionReplace::FunctionReplace()
{
}
FunctionReplace::~FunctionReplace()
{
}
Bu::FString FunctionReplace::getName() const
{
return "replace";
}
Variable FunctionReplace::call( Variable &input, VarList lParams )
{
Bu::FString sA, sB;
sA = lParams.first().getString();
sB = lParams.last().getString();
switch( input.getType() )
{
case Variable::typeString:
{
Variable vOut( input.getString().replace( sA, sB ) );
return vOut;
}
break;
case Variable::typeList:
{
Variable vOut( Variable::typeList );
for( VarList::iterator i = input.begin(); i; i++ )
{
vOut.append( (*i).getString().replace( sA, sB ) );
}
return vOut;
}
break;
default:
break;
}
throw Bu::ExceptionBase(
"replace does not work on non-string or non-list types.");
}
|