Assembly Language Program to print Strings in multiple lines (8086)
In this article, you’ll be learning how to write a Assembly Language Program to print Strings in multiple lines (8086). For this example code, we’ll have three different strings saved on the Registers and will be printed in different lines.
Title: 8086 Assembly Program to print String “Hello World, Good Morning, Have Good Day” in 3 different lines
Description: If you have seen your first Hello World ALP, this assembly program prints STRING from .DATA, but in three different lines. So, here we’ll be saving 3 different Strings to .DATA, and then print them one by one. From our first Hello World ALP hope you have understood the use of mnemonics to display the string and the interrupt request.
How to remove text from string in JavaScript ?
JavaScript is widely used language. We may sometime need to remove text from string to get a desired output from certain API calls or even within an JavaScript APP. Answers to your question on how to remove text from string in JavaScript are mentioned below.