Skip to main content

Posts

Showing posts with the label React js character limitation

Getting substring of props value – React

The below example will helps to getting substring of props value using React and it will also very helpful to maximum amount of characters in a div/paragraph tag in React . As an Example, import   React , {  Component  }  from   'react' export   default   class   UserDetail   extends   Component  {      state  ={          min_char:   0 ,          max_char: 150 ,          desciption: ''     }      constructor ( props ) {          super ( props );                   let   desc  =  this . props . desciption ;          this . state . d...