Replacing markdown tags with html tags in Java
I’m doing a chatroom project for a java class. I need it so if a client types in something like “Hi there bold and italics” and so on, that this string can get converted to “Hi there bold and italics” without using third party packages. The only thing I can think to do is use replaceAll statements but this is incredibly inefficient and won’t allow me to wrap the text properly only have to open html tags and no close tag. Does anyone have any ideas?