2
SwiftのRegexを使用してHTML文字列を文字列で置き換えようとしています。基本的に「1,2,3」のような数字が「Appendices」という単語や世界の「Appendix」の前にある1つの数字の前にある場合はいつでも、ハイパーリンクタグを作成したいと思います。RegexはSwiftのhtml文字列を置き換えます
例えば私は、文字列があります。
See Appendices 1 , 9 and 27. You should also see the Appendices 28, 45 and 37. Also see Appendix 19. See also chapter 19 and Verses 38 and 45
をそして私はそれを交換したいと思います:
See Appendices <a href="Appendix://1"/>1</a> , <a href="Appendix://9"/>9</a> and <a href="Appendix://27"/>27</a> . You should also see the Appendices <a href="Appendix://28"/>28</a> , <a href="Appendix://45"/>45</a> and <a href="Appendix://37"/>37</a> . Also see <a href="Appendix://19"/>Appendix 19</a> . See also chapter 19 and Verses 38 and 45
http://www.regexr.com/のようなツールを使って正規表現をテストするべきでしょう。 –