Package com.uic.ase.proj.xbn.string

Examples of com.uic.ase.proj.xbn.string.SOBString


  }

  private int idxLastIdxOfWord(StringOrBuffer str_orBfr, String s_searchWord, int i_idxLeft, int i_idxAfterRight, boolean b_bounded, boolean b_callToIdxOrLastIdx, String s_callingFunc)  {
    throwAXIfBadStr(s_searchWord, "s_searchWord", s_callingFunc);

    if(!isLetterDigitUnderscore(new SOBString(s_searchWord)))  {
      throwAX(s_callingFunc + ":  s_searchWord ('" + s_searchWord + "') must contain only letters, digits and underscores.");
    }

    //If this is a call to indexOfWord, then this is used.
    int iIdxLeftMoving = i_idxLeft;
View Full Code Here


    <P>Get a copy of the string where all characters that need to be escaped, are.</P>

    @return  The contents of getSOBS:  <CODE><A HREF="~JD~unescape(sob)~EJD~">unescape</A>([<A HREF="~JD~utils~EJD~">UtilString</A>].<A HREF="~JD~utils#getSOBS(s,s)~EJD~">getSOBSB</A>(s_tr, "get"))</CODE>
   **/
  public final String get(String s_tr) throws UnescapeStringException  {
    SOBString ss = uStr.getSOBS(s_tr, "get");

    //We don't care what it returns, this is just to indicate that it *does* return something.
    int iUNRTRND = unescape(ss);
    return ss.toString();
  }
View Full Code Here

    <P>Get a copy of the string where all characters that need to be escaped, are.</P>

    @return  The contents of getSOBS:  <CODE><A HREF="~JD~unescape(sob,i)~EJD~">unescape</A>([<A HREF="~JD~utils~EJD~">UtilString</A>].<A HREF="~JD~utils#getSOBS(s,s)~EJD~">getSOBSB</A>(s_tr, "get"), i_idxErrOffset)</CODE>
   **/
  public final String get(String s_tr, int i_idxErrOffset) throws UnescapeStringException  {
    SOBString ss = uStr.getSOBS(s_tr, "get");

    //We don't care what it returns, this is just to indicate that it *does* return something.
    int iUNRTRND = unescape(ss, i_idxErrOffset);
    return ss.toString();
  }
View Full Code Here

    <P>Get a copy of the string after all characters that need to be escaped, are.</P>

    @return  The contents of getSOBFromS:  <CODE><A HREF="~JD~escapeSOB(sob,i)~EJD~">escapeSOB</A>([<A HREF="~JD~utils~EJD~">UtilString</A>].<A HREF="~JD~utils#getSOBS(s,s)~EJD~">getSOBS</A>(s_tr, "get"), i_idxErrOffset)</CODE></P>
  **/
  public String get(String s_tr, int i_idxErrOffset)  {
    SOBString ss = uStr.getSOBS(s_tr, "get");
    escapeSOB(ss, i_idxErrOffset);
    return ss.toString();
  }
View Full Code Here

TOP

Related Classes of com.uic.ase.proj.xbn.string.SOBString

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.