function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Abi V 4Abi V 4 

Outputtext formatting in Lightning component

I have the text field and which is having the values separated by the ; symbol.
Ex:Test1;test2;test3;test4;
Now i want to display these values as below
test1
test2
test3
test4

Please let me know how to achive this formatting.
Nayana KNayana K
Can you please post your code?
Abi V 4Abi V 4
Please find the piece of logic in component.
<aura:attribute name="myrecords" type="Majors_Product_Matrix__c"/>    
<div class="slds-grid">
   <div class="slds-col">HW Owned By Customer
      <aura:iteration items="{!v.myrecords}" var="oppInfo">
              {!oppInfo.HW_Owned_By_Customer__c}

        </aura:iteration>
   </div> 
   </div>