Esempio n. 1
0
 public static int RPosEx(String needle, String str, int start)
 {
     return(UStringUtils.LastIndexOf(str, needle, start));
 }
Esempio n. 2
0
 public static int RPosEx(Char needle, String str, int start)
 {
     return(UStringUtils.LastIndexOf(str, needle.ToString(), start));
 }
Esempio n. 3
0
 public static int RPos(String needle, String str)
 {
     return(UStringUtils.LastIndexOf(str, needle));
 }
Esempio n. 4
0
 public static int RPos(String needle, String str, Boolean ignoreCase)
 {
     return(UStringUtils.LastIndexOf(str, needle, ignoreCase));
 }
Esempio n. 5
0
 public static int RPos(Char needle, String str)
 {
     return(UStringUtils.LastIndexOf(str, needle.ToString()));
 }