1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package python.internal;
- import python.internal.Internal;
- import python.lib.Builtin;
- @:keep
- @:native("HxString")
- class StringImpl {
- public static inline function split (s:String, d:String) {
- return if (d == "") Builtin.list(s) else Syntax.callField(s, "split", d);
- }
- public static function charCodeAt(s:String, index:Int) {
- return
- if (s == null || s.length == 0 || index < 0 || index >= s.length) null
- else Builtin.ord(Syntax.arrayAccess(s, index));
- }
- public static inline function charAt(s:String, index:Int) {
- return if (index < 0 || index >= s.length) "" else Syntax.arrayAccess(s,index);
- }
- public static inline function lastIndexOf(s:String, str:String, ?startIndex:Int):Int {
- if (startIndex == null) {
- return Syntax.callField(s, "rfind", str, 0, s.length);
- } else {
- var i = Syntax.callField(s, "rfind", str, 0, startIndex+1);
- var startLeft = i == -1 ? Builtin.max(0, startIndex + 1 - str.length) : i + 1;
- var check = Syntax.callField(s,"find", str, startLeft, s.length);
- if (check > i && check <= startIndex) {
- return check;
- } else {
- return i;
- }
- }
- }
- public static inline function toUpperCase (s:String) {
- return Syntax.callField(s, "upper");
- }
- public static inline function toLowerCase (s:String) {
- return Syntax.callField(s, "lower");
- }
- public static inline function indexOf (s:String, str:String, ?startIndex:Int) {
- if (startIndex == null)
- return Syntax.callField(s, "find", str);
- else
- return Syntax.callField(s, "find", str, startIndex);
- }
- public static inline function toString (s:String) {
- return s;
- }
- public static inline function get_length (s:String) {
- return Builtin.len(s);
- }
- public static inline function fromCharCode( code : Int ) : String {
- #if doc_gen
- return "";
- #else
- return Syntax.callField('', "join", Builtin.map(Builtin.chr, cast [code])); // TODO: check cast
- #end
- }
- public static function substring( s:String, startIndex : Int, ?endIndex : Int ) : String {
- if (startIndex < 0) startIndex = 0;
- if (endIndex == null) {
- return Syntax.arrayAccessWithTrailingColon(s, startIndex);
- } else {
- if (endIndex < 0) endIndex = 0;
- if (endIndex < startIndex) {
- return Syntax.arrayAccess(s, endIndex, startIndex);
- } else {
- return Syntax.arrayAccess(s, startIndex, endIndex);
- }
- }
- }
- public static function substr( s:String, startIndex : Int, ?len : Int ) : String {
- if (len == null) {
- return Syntax.arrayAccessWithTrailingColon(s, startIndex);
- } else {
- if (len == 0) return "";
- return Syntax.arrayAccess(s, startIndex, startIndex+len);
- }
- }
- }
|