-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStrings.sol
50 lines (38 loc) · 1.32 KB
/
Strings.sol
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
48
49
50
pragma solidity ^0.4.9;
library Strings {
function concact(string _base, string _value) internal returns(string) {
bytes memory _baseBytes = bytes(_base);
bytes memory _valueBytes = bytes(_value);
string memory _tmpValue = new string(_baseBytes.length + _valueBytes.length);
bytes memory _newValue = bytes(_tmpValue);
uint i;
uint j;
for(i=0;i<_baseBytes.length;i++) {
_newValue[j++] = _baseBytes[i];
}
for(i=0;i<_valueBytes.length;i++) {
_newValue[j++] = _valueBytes[i];
}
return string(_newValue);
}
function strpos(string _base, string _value) internal returns (int) {
bytes memory _baseBytes = bytes(_base);
bytes memory _valueBytes = bytes(_value);
assert(_valueBytes.length == 1);
for(uint i=0;i<_baseBytes.length;i++) {
if(_baseBytes[i] == _valueBytes[0]) {
return int(i);
}
}
return -1;
}
}
contract testString {
using Strings for string;
function testConcact(string _base) returns (string) {
return _base.concact("_suffix");
}
function needleInHaystack(string _base) returns (int) {
return _base.strpos("t");
}
}