Index() публичный статический Метод

public static Index ( string str ) : int
str string
Результат int
Пример #1
0
        /**
         * Gets a special kind of Phrase that changes some characters into corresponding symbols.
         * @param leading
         * @param string
         * @param font
         * @return a newly constructed Phrase
         */
        public static Phrase GetInstance(int leading, String str, Font font)
        {
            Phrase p = new Phrase(true);

            p.Leading = leading;
            p.font    = font;
            if (font.Family != Font.FontFamily.SYMBOL && font.Family != Font.FontFamily.ZAPFDINGBATS && font.BaseFont == null)
            {
                int index;
                while ((index = SpecialSymbol.Index(str)) > -1)
                {
                    if (index > 0)
                    {
                        String firstPart = str.Substring(0, index);
                        p.Add(new Chunk(firstPart, font));
                        str = str.Substring(index);
                    }
                    Font          symbol = new Font(Font.FontFamily.SYMBOL, font.Size, font.Style, font.Color);
                    StringBuilder buf    = new StringBuilder();
                    buf.Append(SpecialSymbol.GetCorrespondingSymbol(str[0]));
                    str = str.Substring(1);
                    while (SpecialSymbol.Index(str) == 0)
                    {
                        buf.Append(SpecialSymbol.GetCorrespondingSymbol(str[0]));
                        str = str.Substring(1);
                    }
                    p.Add(new Chunk(buf.ToString(), symbol));
                }
            }
            if (!string.IsNullOrEmpty(str))
            {
                p.Add(new Chunk(str, font));
            }
            return(p);
        }
Пример #2
0
        /**
         * Gets a special kind of Phrase that changes some characters into corresponding symbols.
         * @param leading
         * @param string
         * @param font
         * @return a newly constructed Phrase
         */
        public static Phrase GetInstance(int leading, String str, Font font)
        {
            Phrase p = new Phrase(true);

            p.Leading = leading;
            p.font    = font;
            if (font.Family != Font.SYMBOL && font.Family != Font.ZAPFDINGBATS && font.BaseFont == null)
            {
                int index;
                while ((index = SpecialSymbol.Index(str)) > -1)
                {
                    if (index > 0)
                    {
                        string firstPart = str.Substring(0, index);

                        /* bugfix [ #461272 ] CODE CHANGE REQUIRED IN Phrase.java
                         *                 by Arekh Nambiar */
                        ((ArrayList)p).Add(new Chunk(firstPart, font));
                        str = str.Substring(index);
                    }
                    Font          symbol = new Font(Font.SYMBOL, font.Size, font.Style, font.Color);
                    StringBuilder buf    = new StringBuilder();
                    buf.Append(SpecialSymbol.GetCorrespondingSymbol(str[0]));
                    str = str.Substring(1);
                    while (SpecialSymbol.Index(str) == 0)
                    {
                        buf.Append(SpecialSymbol.GetCorrespondingSymbol(str[0]));
                        str = str.Substring(1);
                    }
                    ((ArrayList)p).Add(new Chunk(buf.ToString(), symbol));
                }
            }
            /* bugfix by August Detlefsen */
            if (str != null && str.Length != 0)
            {
                ((ArrayList)p).Add(new Chunk(str, font));
            }
            return(p);
        }