Files
BlitzNext/Runtime/lib/bbstring.hpp
T

22 lines
570 B
C++
Raw Normal View History

2019-01-18 21:26:57 +01:00
#pragma once
#include "basic.hpp"
2014-01-31 08:23:00 +13:00
2019-01-18 17:04:17 +01:00
BBStr* bbString(BBStr* s, int n);
BBStr* bbLeft(BBStr* s, int n);
BBStr* bbRight(BBStr* s, int n);
BBStr* bbReplace(BBStr* s, BBStr* from, BBStr* to);
int bbInstr(BBStr* s, BBStr* t, int from);
BBStr* bbMid(BBStr* s, int o, int n);
BBStr* bbUpper(BBStr* s);
BBStr* bbLower(BBStr* s);
BBStr* bbTrim(BBStr* s);
BBStr* bbLSet(BBStr* s, int n);
BBStr* bbRSet(BBStr* s, int n);
BBStr* bbChr(int n);
int bbAsc(BBStr* s);
int bbLen(BBStr* s);
BBStr* bbHex(int n);
BBStr* bbBin(int n);
BBStr* bbCurrentDate();
BBStr* bbCurrentTime();