regular expression

  1. S

    Regex expression for replacing particular symbols in text- ®and ™

    Hi, I'm wanting to create a regular expression which will take a string, and if that string includes symbols ® or™ I want to then wrap those symbols with a <Sup> tag. e.g. "hello® this is a test™" outcome = hello <sup>®</sup> this is a test <sup>™</sup> Can anyone help? Thanks
  2. D

    Split string with a text qualifier

    Hello All. This is my first post, I'm new to C#. I would like to spilt the below string. My delimiter => ";" and each part is in double quotes. string myLine = "John Smith"; "A"; "45", "Nearly done; follow up"; My expected output: John Smith A 45 Nearly done; follow up I tried to go with...
  3. S

    Question Develop code editor and analyzer application tool.

    Hi all, I have a new requirement to develop C# windows application about which am having a difficult time to how to approach the problem. Below are the details: I have a new requirement to develop VBscript code editor and analyzer C# Winform application tool. The application must read the...
Back
Top Bottom